I need a simple PHP page that lists the contents of a mySQL table into a
on the page. From the page, I need the ability to:
– add a new entry to the database (via form)
– delete entry
– edit entry
Need it fast, doesn’t have to be pretty. Only bells and whistles would be an Ajax refresh on update/add if possible.
Example query for data to be manipulated:
CREATE TABLE IF NOT EXISTS `example` (
`name` varchar(100) NOT NULL,
`code` varchar(30) NOT NULL,
`s…