I have the following code (or similar) in multiple pages on my site
[php]
…
$result = mysql_query(“UPDATE table SET $blah WHERE $here”);
…
[/php]
In all cases this does nothing. There is no update. I know the table has elements in it that would make it update, but …
Please help