Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2. include 'conection.php';
  3.  
  4. $nama = $_POST['nama'];
  5. $username = $_POST['username'];
  6. $passwd = $_POST['password'];
  7. $email = $_POST['email'];
  8.  
  9. mysqli_query($conection, "INSERT INTO crud VALUES ('','$nama','$username','$passwd','$email')");
  10.  
  11. header("location:index.php")
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement