-
Notifications
You must be signed in to change notification settings - Fork 32
/
submit.php
46 lines (45 loc) · 1.19 KB
/
submit.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
echo "You shouldn't be here";
return;
// require("config.php");
//
// $name = $_POST['name'];
// $rollno = $_POST["rollno"];
// $email = $_POST["email"];
// $phoneno = $_POST["phoneno"];
// $gender = $_POST["gender"];
// $github = $_POST["github"];
// $webdev = $_POST["webdev"];
// $appdev = $_POST["appdev"];
// $sysad = $_POST["sysad"];
// $open = $_POST["open"];
// $interests = $_POST["interests"];
//
// if ( $_POST['name'] == ""
// || $_POST["rollno"] == ""
// || $_POST["email"] == ""
// || $_POST["phoneno"] == ""
// || $_POST["gender"] == ""
// || $_POST["github"] == ""
// || $_POST["webdev"] == ""
// || $_POST["appdev"] == ""
// || $_POST["sysad"] == ""
// || $_POST["open"] == ""
// ) {
// echo "Failure";
// return;
// }
//
// $sql = "INSERT INTO registrations"
// ." (name, rollno, phoneno, gender, email, github, webdev, appdev, sysad, open, interests)"
// ." values (?,?,?,?,?,?,?,?,?,?,?)";
//
// $statement = $conn->prepare($sql);
//
// $statement->bind_param("sssssssssss",
// $name, $rollno, $phoneno, $gender, $email, $github, $webdev, $appdev, $sysad, $open, $interests);
//
// $statement->execute();
//
// echo "Success";
?>