I'm having trouble updating a table in which the name of the column has a space in it.
Example: Big Red
$result = mysql_query("UPDATE example SET Big Red='1' WHERE Blue='2'") or die(mysql_error());
It thinks I'm trying Red='1'. I've tried 'Big Red'='1' but that doesn't work either. Any ideas?