I want to replace some fields of a row in my table and leave
Posted: Thu Sep 01, 2011 2:07 am
I want to replace some fields of a row in my table and leave other fields intact.
$res = mysql_query("REPLACE INTO User VALUES('updatedValue',...,...,'updatedValue2', 'updatedValue3'')");
The values with '...' should not be replaced. What code should I write ?
thanks
$res = mysql_query("REPLACE INTO User VALUES('updatedValue',...,...,'updatedValue2', 'updatedValue3'')");
The values with '...' should not be replaced. What code should I write ?
thanks