Advertisement
Guest User

Untitled

a guest
Aug 24th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <input type="text" name="names" placeholder="Enter Name" />
  2. <select name="gender">
  3. <option value="Male">Male</option>
  4. <option value="Female">Female</option>
  5. </select>
  6. <input type="text" name="age" placeholder="Enter Age" />
  7. <input type="text" name="state" placeholder="Enter State" />
  8.  
  9. <label>How Did You Find Us?</label>
  10.  
  11. <input type="checkbox" name="remarks[]" value="Search Engine (eg. Google)"> Search Engine (eg. Google) &nbsp;&nbsp;&nbsp;
  12. <input type="checkbox" name="remarks[]" value="Facebook"> Facebook &nbsp;&nbsp;&nbsp;
  13. <input type="checkbox" name="remarks[]" value="Newspaper Ads"> Newspaper Ads &nbsp;&nbsp;&nbsp;
  14. <input type="checkbox" name="remarks[]" value="Bus-Stop Ads"> Bus-Stop Ads &nbsp;&nbsp;&nbsp;
  15.  
  16. $names = filter_input(INPUT_POST, "names");
  17. $gender = filter_input(INPUT_POST, "gender");
  18. $age = filter_input(INPUT_POST, "age");
  19. $state = filter_input(INPUT_POST, "state");
  20. $remarks = $_POST['remarks'];
  21.  
  22. $inputArr[] = array(
  23. $names, $gender, $age, $state, $remarks
  24. );
  25.  
  26. $fp = fopen($_SERVER["DOCUMENT_ROOT"]."/student.csv", "a+");
  27.  
  28. fputcsv($fp, $inputArr);
  29. fclose($fp);
  30.  
  31. Array
  32. (
  33. [0] => Melinda
  34. [1] => Female
  35. [2] => 23
  36. [3] => united state
  37. [4] => Array
  38. (
  39. [0] => Facebook
  40. [1] => Newspaper Ads
  41. [2] => Bus-Stop Ads
  42. )
  43.  
  44. )
  45.  
  46. Array
  47. (
  48. [0] => Melinda
  49. [1] => Female
  50. [2] => 23
  51. [3] => united state
  52. [4] => Array
  53. [5] => Facebook
  54. [6] => Newspaper Ads
  55. [7] => Bus-Stop Ads
  56. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement