Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. include_once("conexao.php");
  4.  
  5. $usuario = $_POST['usuario'];
  6. $senha = $_POST['senha'];
  7. $email = $_POST['email'];
  8.  
  9. $sql = "INSERT INTO usuario (usuario, senha, email ) VALUES ('$usuario', '$senha', '$email')";
  10. $salvar = mysqli_query($conexao, $sql);
  11.  
  12. mysqli_close($conexao);
  13.  
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement