Hi,
Im sure this is cake for most of you, I am just getting into the insert/update part of php/mysql.
anyways to the nitty gritty..
this works fine
$sql="INSERT INTO my_profile (mem_id, description) VALUES ('$_POST[mem_id]','$_POST[description]')";
BUT....
I need to change where and how its posted to the DB. basically, its an EXISTING mem_id with a description. I cant seem to figure out how to UPDATE the description from the form values... i have looked around, granted im tired and could have looked harder, but this forum is great.
So if anyone could give me some pointers i would appreciate it.