Advertisement
RobinJ1995

Untitled

Jan 28th, 2012
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. $query = $database->prepare ('UPDATE forumLinks (active, confirmationCode) SET active=1, time=:time WHERE confirmationCode=:confirmationCode;');
  2.                             $query->bindValue (':confirmationCode', $confirmationCode);
  3.                             $query->bindValue (':time', time ());
  4.                             $query->execute ();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement