Advertisement
Guest User

Form Action

a guest
Apr 21st, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. <form method="post" action="cadastro.php">
  2.     <input type="text" name="user">
  3.     <input type="submit">
  4. </form>
  5.  
  6.  
  7. ////Cadastrp.php
  8. <?php
  9.  
  10. $user = $_POST['user'];
  11. echo $user;
  12.  
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement