Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <?php
  2. $dbhost = 'localhost';
  3. $dbuser = 'user';
  4. $dbpass = 'password';
  5. $conn = mysql_connect($dbhost, $dbuser, $dbpass);
  6. if(!$conn )
  7. {
  8. die('Could not connect: ' . mysql_error());
  9. }
  10.  
  11.  
  12.  
  13. $message = mysql_real_escape_string($message);
  14. $insertInto = mysql_query ("INSERT INTO moderation_applications (Time,Age,SteamID,Email,Twitch,Explanation)
  15. VALUES('time()','$age','$steamid','email','$twitch','$messaage')", $conn);
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement