Commandrea
Commandrea

Reputation: 561

Edit MySQL database via HTML-- options?

I have a MySQL database (currently using phpmyadmin to manage) that I would like to display as an HTML table and be able to edit the records/columns directly.

What are my options on implementing this? I'm not sure of the terminology I should be seeking out for more information.

I'm already using php/mysql to display the table with checkboxes for deleting multiple records on the fly, but I need to be able to see the full entries on the page and edit individual values.

Also, anyway to 'sort' via an HTML table? Not necessary, just curious.

Upvotes: 2

Views: 860

Answers (2)

Ed Manet
Ed Manet

Reputation: 3178

Take a look at phpGrid http://phpgrid.com/ It's got all the bells and whistles and is pretty easy to implement.

Upvotes: 3

OptimusCrime
OptimusCrime

Reputation: 14863

A great tool for this is phpMyAdmin. Programming something like this yourself is difficult.

There might be other "lighter" alternatives. Take a look at this: http://www.google.com/search?q=database+html

Upvotes: 1

Related Questions