edit a row
Posted: Tue Nov 26, 2002 5:43 pm
Ok, i want to edit a specific fileld in a MySQL, how would i go about doing that in a PHP script?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
$query = "UPDATE members SET status='ill' WHERE id=".$memberId;
mysql_query($query, $dbConn);