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
2 answers

What do the “l” and “p” mean in this SQL statement?

I have the following statement which filters out a result from multiple tables. I am not quite understanding the p after tablename and the l after anothertablename. Are they generic or purposeful? SELECT id, title, l.id, username FROM tablename p…
codacopia
  • 2,369
  • 9
  • 39
  • 58
3
votes
1 answer

Can't create a TRIGGER from within another stored routine -- What is another "stored routine"?

I'm trying to create a trigger in MySQL using PhpMyAdmin. CREATE TRIGGER Update_Last_Transit_Status AFTER INSERT ON Delivery FOR EACH ROW BEGIN UPDATE Transportation SET Status="Dispatched" WHERE EXISTS (SELECT * FROM Transit, Route WHERE…
batman
  • 5,022
  • 11
  • 52
  • 82
3
votes
1 answer

MySQL cursor returns only one record

I'm using Hostgator to host my PHP Website with MySQL 5.5.33 and PHPMyAdmin 3.5.5. I want to use cursor to get values from individual record in a table. The followings is the code for that stored procedure: CREATE DEFINER=`lnutri`@`localhost`…
Kevin Bui
  • 2,754
  • 1
  • 14
  • 15
3
votes
3 answers

Export Firebird database to sql

I have several databases in Firebird using IBExpert as the GUI admin. I am changing over to MySQL. I can use IBExpert to backup the database (which gives me the full structure and data) but the gbak format can't be read by phpMyAdmin. PhpMyAdmin has…
Frank Luke
  • 1,342
  • 3
  • 18
  • 33
3
votes
3 answers

Get time for MySQL result without showing result

I realized that using phpMyAdmin for testing the speed of queries might be dumb: it automatically applies a LIMIT clause. I tried a certain query on a fairly large number of records (31,595) with a GROUP BY clause. phpMyAdmin, adding LIMIT 0, 200,…
Buttle Butkus
  • 9,206
  • 13
  • 79
  • 120
3
votes
4 answers

Error when importing sql database to phpmyadmin

I'm having trouble when trying to import a database into phpmyadmin. Error SQL query: -- -- Database: `iiumcms` -- -- -------------------------------------------------------- -- -- Table structure for table `admin` -- CREATE TABLE IF NOT EXISTS …
user2961517
  • 31
  • 1
  • 1
  • 2
3
votes
2 answers

how to access phpmyadmin only the port 8080 in apache

I've tried vim /etc/phpmyadmin/apache.conf but I can not put a VirtualHost here. I want to change this configuration to list only the port 8080, can anyone help? thank you what I want is: www.site.com/phpmyadmin ->…
alex
  • 61
  • 1
  • 1
  • 5
3
votes
2 answers

how to import (.dmp) database format in mysql or phpmyadmin?

how to import (.dmp) database format in mysql or phpmyadmin ? I am using phpmyadmin mysql tool for database manage. I have receive database backup in .dmp format, I have require import database in phpmyadmin as mysql database format.
tailor
  • 366
  • 3
  • 6
  • 20
3
votes
2 answers

PHP Extension:mysql in phpmyadmin

When I log into phpmyadmin it says that my PHP Extension is: MySQL. I know this needs to be changed to mysqli but how do I do that? Is that something I can do myself or is it a server config setting that I need my web host to change?
McCoy
  • 105
  • 2
  • 11
3
votes
3 answers

phpmyadmin warning, "The additional features for working with linked tables have been deactivated"

In the footer of the phpmyadmin homepage is a warning that reads, "The additional features for working with linked tables have been deactivated. To find out why click here."
user163831
  • 1,031
  • 3
  • 13
  • 25
3
votes
1 answer

phpmyadmin: export file name template to include table name

I am trying to export few tables in phpmyadmin 4.0.5, and want to include the table name in the saved file name. The default template which comes in is @DATABASE@. Some googling on this suggests that @TABLE@ or TABLE should give the table name in…
satyakaam
  • 33
  • 1
  • 4
3
votes
5 answers

How to execute .sql files to create new tables

phpMyAdmin configuration storage (phpMyAdmin/doc/html/setup.html#linked-tables) says [..] and then create new tables by importing examples/create_tables.sql This is not explicit. Where do I 'import' this file? Is it an SQL script I have to…
user2789862
  • 31
  • 1
  • 2
3
votes
4 answers

#1130 - Host ‘localhost’ is not allowed to connect to this MySQL server

I issued a command of: DROP USER 'root'@'localhost'; GRANT ALL PRIVILEGES ON . TO 'root'@'%'; ...in PhpMyAdmin. Immediately after the execution, I was forced out PhpMyAdmin. I got: error #1130 - Host 'localhost' is not allowed to connect to…
Steven
  • 24,410
  • 42
  • 108
  • 130
3
votes
2 answers

Required but not granted http access to 216.34.181.97 slows phpmyadmin down

I use a recently freshly installed phpmyadmin 4.0.5 for the administration of databases on a server with a rather restrictive firewall. In the firewall logs I see that phpmyadmin tries to open an http connection to the address 216.34.181.97 - which…
ralph
  • 88
  • 6
3
votes
4 answers

Where does phpMyAdmin store the phpMyAdmin user password?

During the setup of phpMyAdmin, a phpMyAdmin user was created and I can see the user when I look at the phpMyAdmin database privileges. Which PHP file stores the password for this user?
Paul
  • 218
  • 1
  • 2
  • 11