Advertisement
Misha_

choicer.php

Oct 10th, 2019
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. <?php
  2. $name = $_POST['name'];
  3. $email = $_POST['email'];
  4. $phone = $_POST['phone'];
  5. $choice = $_POST['choice'];
  6. $text .= "Имя: $name \n";
  7. $text .= "Почта: $email \n";
  8. $text .= "Номер телефона: $phone \n";
  9. $text .= "Выбор: $choice \n\n";
  10. if (!empty($name) && !empty($email) && !empty($choice) && !empty($phone)) {
  11.     $file = fopen ("choice.txt", "a+");
  12.     fwrite ($file,$text);
  13.     fclose ($file);
  14.     header("Location:table.html");
  15. }
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement