Guest User

Untitled

a guest
Oct 12th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2.  
  3. if (isset($_POST['submit'])) {
  4. $username = $_POST['username'];
  5. $email = $_POST['email'];
  6. $password = $_POST['password'];
  7.  
  8. $username = mysqli_real_escape_string($connection, $username);
  9. $email = mysqli_real_escape_string($connection, $email);
  10. $password = mysqli_real_escape_string($connection, $password);
  11. }
  12.  
  13.  
  14. ?>
Add Comment
Please, Sign In to add comment