Guest User

Untitled

a guest
Feb 20th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1.     $query = $database->prepare("INSERT INTO log VALUES ('', ':channel', ':nick', ':host', ':message', ':type', ':time', '');";
  2.     $query->bindParam(':channel', $channel);
  3.     $query->bindParam(':nick', $nick);
  4.     $query->bindParam(':host', $host);
  5.     $query->bindParam(':message', $message);
  6.     $query->bindParam(':type', $type);
  7.     $query->bindParam(':time', $timestamp);
  8.     $query->execute();
Add Comment
Please, Sign In to add comment