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

Cannot save a table in phpMyAdmin

Currently training on phpMyAdmin, and tried to set up my first set of fields in the database. After I set the fields' names, types, and values, I tried to save and phpMyAdmin returned error: Error SQL query: CREATE TABLE `test`.`Contact `…
Michael Lara
  • 45
  • 1
  • 2
  • 3
3
votes
4 answers

phpMyAdmin 4.0.5 export error bug - anyone know if it is being addressed?

phpMyAdmin has announced that in a few days on Sept 1st 2013 they're closing down their other resources such as mailing list and forums and are deferring us to use StackOverflow / StackExchange. I provide general support at a small cPanel hosting…
NightOwl
  • 118
  • 1
  • 8
3
votes
4 answers

PHP script to restore a database into another empty database

This question might seem a duplicate, However i tried all the examples to restore my database but none seems to work for me. I am trying to run a script that will restore my backup sql file to new database. I tried these lines to restore my…
Abdul Hamid
  • 3,222
  • 3
  • 24
  • 31
3
votes
2 answers

Mysql Database & drop-down List

I want to create a database entry screen with minimal programming. So far phpmyadmin as a tool does the job except that it does not offer options such as drop-down lists on fields whose values are populated from another table. Is there any secure…
Masood Hosseini
  • 193
  • 1
  • 9
3
votes
2 answers

Editing PhpMyAdmin left side database frame

One of my clients hosting servers recently updated to the new PhpMyAdmin that has the weird nested tree structure of databases and tables on the left hand side and you're no longer able to see all (or many) of the tables of the database without…
stevecomrie
  • 2,423
  • 20
  • 28
3
votes
2 answers

MySQL and PHP TimeZone

In my PHP.ini file I set the TimeZone like so... 'America/New_York' so when i ran a simple php Date() function echo date("Y-m-d H:i:s"); I get the Correct dateTime according to 'MY' system time as that's what i am comparing against and want to…
SecureCloud
  • 103
  • 2
  • 4
  • 11
3
votes
1 answer

Why is phpmyadmin redirecting to login page after logging in?

I browse to phpmy admin, enter my credentials click login, it then goes back to the login page with a token set in the url. No errors (error reporting is on) I can log in to the database over ssh Time/date seems to be correct to within the minute on…
Chris
  • 83
  • 8
3
votes
1 answer

Localhost/phpmyadmin/ returns php code

But however after changing the "httpd.conf" directory from index.html -> index.php I got this: https://i.stack.imgur.com/pPR1e.png Then I tried using XAMPP and even after that I've gotten that screen. Could someone tell me what I might be doing…
user2653511
  • 33
  • 1
  • 3
3
votes
2 answers

MySQL sort by a column by default in phpMyAdmin

I added a new index in my table and now phpMyAdmin is sorting the rows by that column by default. How do I make phpMyAdmin sort the rows by the id column instead of the url column by default? CREATE TABLE IF NOT EXISTS `links` ( `id` int(11)…
Leo Jiang
  • 24,497
  • 49
  • 154
  • 284
3
votes
2 answers

Merge tables without overwriting existing ones in mysql phpmyadmin

I was having a "coming soon" page with a sign up form. Since a couple of weeks I've switched to another web hosting and continue working on my new site at my new host, but continued to let the visitors sign up at my old host. Now my have pointed my…
user2554929
  • 41
  • 2
  • 4
3
votes
5 answers

phpmyadmin mcrypt extension is missing

I'm using CentOS 6 and the latest phpMyAdmin (4.0.1.4) and I noticed the error "The mcrypt extension is missing. Please check your PHP configuration." I went ahead and ran: rpm -ivh…
user1922212
  • 165
  • 3
  • 3
  • 10
3
votes
2 answers

phpmyadmin issuing a fatal error for PMA_DBI_num_rows()

Doing a simple phpmyadmin install on a new server and I get the white screen. Going into the apache logs I see: [Wed Jun 19 23:20:57 2013] [error] [client 67.154.118.163] PHP Fatal error: Call to undefined function PMA_DBI_num_rows() in…
Dennis Smolek
  • 8,480
  • 7
  • 30
  • 39
3
votes
3 answers

MySQL - Setting Integer Length

I'm using PhpMyAdmin to set my table structures. As I'm learning to use the columns correctly, I'm curious about choosing the right integer type, and most importantly the Length (phpmyadmin requires it) From the DZone.com I've read this: Field Type…
coffeemonitor
  • 12,780
  • 34
  • 99
  • 149
3
votes
1 answer

How do I use WHERE EXISTS function in JDBC

For the last 6-7 hours I've been searching/googling/experimenting for a solution to this but no results so far. I have an SQL string(below) which works PERFECTLY in PHPMYADMIN but doesn't work within my java execution. When attempting to execute the…
Matthew Auld
  • 388
  • 1
  • 3
  • 18
3
votes
2 answers

how to get table structure as an SQL query in phpmyadmin

I have many tables in my MySQL database & I want to know the table structure of all tables. When I type desc tableName in SQL Column I see the table structure in tabular format. How can I get the table structure in SQL query format as we normally…
Fahim Parkar
  • 30,974
  • 45
  • 160
  • 276