Guest User

Untitled

a guest
Aug 10th, 2012
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. Function only working sometimes
  2. function add_log($username, $action) {
  3. $l_con = new con();
  4. $log_action = $l_con->connect();
  5.  
  6. // IP to put in database
  7. $ip_orig = $this->getIP();
  8. $newa_ip = ip2long($ip_orig);
  9.  
  10. $prepara = $log_action->query("INSERT INTO log VALUES ('$username',
  11. '$action', '$newa_ip', CURDATE(), NOW())");
  12. }
  13.  
  14. INSERT INTO table (COLUMN1, COLUMN2, COLUMNN) VALUES ('a', 'b', 'n...');
  15.  
  16. INSERT INTO log VALUES ('$username', '$action', INET_ATON('$new_ip'), CURDATE(), NOW())
Advertisement
Add Comment
Please, Sign In to add comment