Forum Moderators: coopster
read/write/amend/delete
What it sounds like you need then are the following:
Select [dev.mysql.com] $sql = "SELECT * FROM table";
Insert [dev.mysql.com] $sql = "INSERT INTO table (field1, field2) VALUES ($val1,$val2)";
Update [dev.mysql.com] $sql = "UPDATE table SET field1 = '$val1')";
Delete [dev.mysql.com] $sql = "DELETE FROM table WHERE field1 = '$val1'";
Those are basic variations of the MySQL commands that would be used in any script. I don't know if you'll find what you're looking for.. but its pretty easy to write a simple script using these. A word of caution however, it is also easy to mess up your data. We can usually help with understanding the details.
Thats the idea, yes.
I could write one but was trying to save a bit of time by using an existing one.
I was hoping there was a tried and tested script out there I could just install on the server which would look at the existing mysql tables and present a good form based update screen for each table, very similar to phpadmin but better functionality.
Some knowledge of how MySQL works will be an advantage though.