U
Useless information
Guest
when i update a row do i need to include all the columns in that update example: i have a table with columns id name and number can i just use
$values =3,4,5,8;
mysql_query("UPDATE table_name SET values= ".$values." WHERE id= 1")
i keep getting an error and im not sure if its because i have commas in the values or because of the fact im not updating everything.
its not a problem with quotes
$values =3,4,5,8;
mysql_query("UPDATE table_name SET values= ".$values." WHERE id= 1")
i keep getting an error and im not sure if its because i have commas in the values or because of the fact im not updating everything.
its not a problem with quotes