Guest User

Untitled

a guest
Jun 18th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <form id="form" action="zakaz.php" method="post"
  2. onsubmit="if(this.name.value==''){alert('Введите Ваше имя');return false}if(this.phone.value==''){alert('Введите Ваш номер телефона');return false}return true;"
  3. >
  4. <input type="text" name="name" placeholder="Введите Ваше имя" required="">
  5. <input type="text" name="phone" placeholder="Введите Ваш телефон" required="">
  6. <button class="but">Заказать сейчас</button>
  7. </form>
  8.  
  9. form action="script1.php/?next_script=script2.php"
  10.  
  11. <form id="form" action="zakaz.php?next=telegram.php">
  12.  
  13. <?php
  14. // Обработка формы
  15. if (isset($_GET['next']))
  16. require_once $_GET['next']
Add Comment
Please, Sign In to add comment