Skip to content

Instantly share code, notes, and snippets.

@fleeting
Last active December 16, 2015 06:09
Show Gist options
  • Save fleeting/5389446 to your computer and use it in GitHub Desktop.
Save fleeting/5389446 to your computer and use it in GitHub Desktop.
$aPhoto = $this->dbQuery(
"SELECT * FROM `{dbPrefix}photocontest`"
." WHERE `id` = ".$this->dbQuote($id, "integer")
,"all""
);
$this->dbUpdate(
"photocontest",
array(
"votes" = $aPhoto["votes"]+1
),
$id
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment