You are enclosing the query in single quotes. And in single quotes variable interpolation(also called substitution) does not happen.
Simple example:
$who = 'harry potter';
echo 'hi "$who"'; // prints hi "$who"
echo "hi '$who'"; // prints hi 'harry potter'
Change your code as:
$test = $db->query("update games set played = played + 1 where id = '$gid'");
Also from the line: $gid = (int) stripslashes($_POST['id']);
its clear that $gid
is an integer and there is not need to enclose it in quotes in your query. So we have:
$test = $db->query("update games set played = played + 1 where id = $gid");
codaddict
2010-09-23 02:40:18