Hct. I get what you mean now. FYI ALWAYS post a reply. Do not start another post. We get confused easily. Ok here is your original query: $query = "UPDATE poll SET location = '1,0';";
mysql_query($query);
This is how it should be.
$query = "UPDATE poll SET location='1,0'";
mysql_query($query);
That should do it. If not then you do not have MySQL configured correctly. I took out the extra ;. Cause when mysql got to it, it gets confused and just skips it. So you were telling it to update location to 1,0 end end. It doesnt know what to do with two end statements. So there is the solution to the mystery. 😉
Ziggs