Forum Moderators: coopster
in my form i was able to save data to the database and i can also update and delete on it, but i was not able to edit data from the database. all i want to do id after i can update data i will edit it and then save it again to the database.
what should i do in order to edit my data from the database...please help me ....i am glad to accept all your great ideas.thank you
Your SQL statement should look like this:
UPDATE yourtable SET name = $name, age = $age WHERE id = $id;