Advertisement
Guest User

Untitled

a guest
Aug 31st, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. <?php
  2. $con = mysqli_connect("fibi.000webhost.com", "id2748657_users", "users", "id2748657_users");
  3.  
  4. $username = $_POST["username"];
  5. $first_name = $_POST["first_name"];
  6. $last_name = $_POST["last_name"];
  7. $email = $_POST["email"];
  8. $password = $_POST["password"];
  9.  
  10. $statement = mysqli_prepare($con, "INSERT INTO users (username, first_name, last_name, email, password) VALUES (?, ?, ?, ?,?)");
  11. mysqli_stmt_bind_param($statement, "sssss", $username, $first_name, $last_name, $email, $password);
  12. mysqli_stmt_execute($statement);
  13.  
  14. $response = array();
  15. $response["success"] = true;
  16.  
  17. echo json_encode($response);
  18. ?>
  19.  
  20. Warning: mysqli_connect(): (HY000/2002): Connection timed out in /storage/ssd1/657/2748657/public_html/register.php on line 2
  21.  
  22. Notice: Undefined index: username in /storage/ssd1/657/2748657/public_html/register.php on line 4
  23.  
  24. Notice: Undefined index: first_name in /storage/ssd1/657/2748657/public_html/register.php on line 5
  25.  
  26. Notice: Undefined index: last_name in /storage/ssd1/657/2748657/public_html/register.php on line 6
  27.  
  28. Notice: Undefined index: email in /storage/ssd1/657/2748657/public_html/register.php on line 7
  29.  
  30. Notice: Undefined index: password in /storage/ssd1/657/2748657/public_html/register.php on line 8
  31.  
  32. Warning: mysqli_prepare() expects parameter 1 to be mysqli, boolean given in /storage/ssd1/657/2748657/public_html/register.php on line 10
  33.  
  34. Warning: mysqli_stmt_bind_param() expects parameter 1 to be mysqli_stmt, null given in /storage/ssd1/657/2748657/public_html/register.php on line 11
  35.  
  36. Warning: mysqli_stmt_execute() expects parameter 1 to be mysqli_stmt, null given in /storage/ssd1/657/2748657/public_html/register.php on line 12
  37. {"success":true}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement