Advertisement
phpist

Untitled

Aug 20th, 2019
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <html>
  2. <body>
  3. <?php
  4. $login = $_POST["login"];
  5. $email = $_POST["email"];
  6. $password = $_POST["password"];
  7. $name = $_POST["name"];
  8. print_r($_POST);
  9. /*print_r($_POST["login"]);
  10. print_r($_POST["email"]);
  11. print_r($_POST["password"]);
  12. print_r($_POST["name"]);*/
  13. ?>
  14. <form action="" method="post">
  15. Login: <input type="text" name="login"><br>
  16. E-mail: <input type="text" name="email"><br>
  17. Имя: <input type="text" name="name"><br>
  18. Пароль: <input type="password" name="password"><br>
  19. <p><input name="submit" type="submit" id="submit" value="Зарегистрироваться" /></form>
  20.  
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement