Questions tagged [phpmyadmin]

phpMyAdmin is an open-source, web-based MySQL administration tool written in PHP. Use this tag for problems related to using this tool and not for general query problems

phpMyAdmin is an open source tool written in intended to handle the administration of over the Web. In other words, it allows you to handle MySQL via the web browser in a visual format, with no need to write complex commands from the command line. It can perform various tasks such as creating, reading, updating or deleting databases, tables, columns or rows (); executing statements; or managing users and permissions.

Since the version 4.0.0-alpha1, the HTML frames are gone and the navigation panel now presents a tree.

Features

  • Features provided by the program include:

  • Web interface

  • MySQL database management

  • Import data from CSV and SQL

  • Export data to various formats: CSV, SQL, XML, PDF (via the TCPDF
    library), ISO/IEC 26300 - OpenDocument Text and Spreadsheet, Word,
    Excel, LaTeX and others

  • Administering multiple servers

  • Creating PDF graphics of the database layout

  • Creating complex queries using Query-by-Example (QBE)

  • Searching globally in a database or a subset of it

  • Transforming stored data into any format using a set of predefined
    functions, like displaying BLOB-data as image or download-link

  • Live charts to monitor MySQL server activity like connections,
    processes, CPU/Memory usage, etc.

  • Working with different operating systems.

Useful links

Frequently asked questions

Check documentation for full list of frequent questions.

Similar lightweight tools:

16409 questions
3
votes
1 answer

How do I find the join size of a mysql query?

I had a query that was resulting in the error: ERROR 1104: The SELECT would examine more rows than MAX_JOIN_SIZE. Check your WHERE and use SET SQL_BIG_SELECTS=1 or SET SQL_MAX_JOIN_SIZE=# if the SELECT is ok. I have now changed the query, and I no…
Scott Marley
  • 459
  • 1
  • 5
  • 8
3
votes
1 answer

Mysql Situation where user crashes

So I have a 2 page registration page where on the first page the user inputs all his/her data and then clicks continue. On the 2nd page, they choose certain options and then click continue there, this will then take them somewhere else where their…
John Bernal
  • 230
  • 5
  • 21
3
votes
3 answers

Suspicious requests in Apache web server log file

I found the following requests in my Apache web server. Are these hack attempts? Will they be harmful to the server? My server is crashing frequently, and I don't have the reasons for it: GET /muieblackcat HTTP/1.1" 302 214 GET //index.php HTTP/1.1"…
Mallikarjuna Reddy
  • 1,212
  • 2
  • 20
  • 33
3
votes
1 answer

Connection URL of phpmyadmin

Can any body help me to get the connection url of the MySQL database on the server of phpmyadmin. I want to access the database remotely. Please note that the database is not on my local pc hard disk. Thank you.
codeofnode
  • 18,169
  • 29
  • 85
  • 142
3
votes
2 answers

How to update a column in mySQL database with Excel

I have a table which has approx. 10,000 client records. The table structure look like this: ClientID | FirstName | LastName | PhoneNumber I am trying to update the PhoneNumber column with a updated Excel file, which only has two columns, ClientID |…
sharonjoys
  • 31
  • 1
  • 2
3
votes
4 answers

SELECT with WHERE condition using html search and php post. Returns blank table

The task is pretty straight forward. Using an html form, a last name is posted into a php code which connects to myAdmin database and returns the first and last name associated with the form posted last name from the html search. I've double checked…
3
votes
2 answers

Make phpMyAdmin show exact number of records for InnoDB tables?

Is there any way to make phpMyAdmin show exact number of records for InnoDB tables? I know why InnoDB has different number of records based on interpretation because it's a transactional engine but SQLBuddy is showing the exact number of records for…
datasn.io
  • 12,564
  • 28
  • 113
  • 154
3
votes
1 answer

MySqlConnection is not defined

Im new in vb.net and mysql. I got confused when I am defining Dim SQLConnection As MySqlConnection = New MySqlConnection. And it said that the New "MySqlConnection" is not defined but I made sure that I have imported namespace needed or anything…
Mineko
  • 641
  • 2
  • 14
  • 21
3
votes
0 answers

Cannot load mcrypt extension

phpMyAdmin reports Cannot load mcrypt extension. I'm running Centos 6.2 x86_64 with PHP 5.3.3 and Zend Engine v2.3.0. This is what I've checked so far: php.ini is in /usr/local/zend/etc/php.ini as reported by phpinfo();. PHP…
Jeff Benshetler
  • 640
  • 6
  • 13
3
votes
1 answer

phpMyAdmin won't stop throwing "#1130 - Host 'localhost' is not allowed to connect to this MySQL server "

I'm trying to enter http://localhost/phpmyadmin/index.php but I keep getting : Error MySQL said: #1130 - Host 'localhost' is not allowed to connect to this MySQL server Connection for controluser as defined in your configuration…
JAN
  • 21,236
  • 66
  • 181
  • 318
3
votes
3 answers

condition update cells within the same column

I need to update cells within a specific column based upon ids in another column. The column names are Prod_ID, Lang_ID and Descr: Prod_ID | Lang_ID | Descr --------+---------+------ A101 | 1 | TextA A101 | 2 | TextB A101 | 3 …
3
votes
2 answers

update foreign key reference with default value on delete

I m currently making a table on primary foreign key relation.... book table bookid bookname author 0 No book no author 1 …
Arjun K P
  • 2,081
  • 4
  • 20
  • 33
3
votes
4 answers

SQL update table2 if table1 has value X?

IF EXISTS (SELECT * FROM table1 WHERE group_id='8') UPDATE table2 SET (...) WHERE usertype='numbereight' what am i doing wrong? I need to update the usertype based on the group_id
3
votes
1 answer

phpMyAdmin - logging client queries?

Is there a way to find out or to log what kind of queries are being sent by client applications to a phpMyAdmin db? Thanks so much in advance
sap
  • 1,141
  • 6
  • 41
  • 62
3
votes
3 answers

How can I query between two dates with the 'date' field is a string?

I have a table in a MySQL database with a field named 'Date', the problem is the date is in the format DD-MM-YYYY so I cannot upload it to MySQL as a DATE type field. Instead the field type is a string. With this in mind, how can I write query that…
jII
  • 1,134
  • 2
  • 17
  • 29
1 2 3
99
100