-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder.php
137 lines (122 loc) · 5.51 KB
/
order.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<?php
include 'connect.php';
// $sql = "SELECT * FROM register WHERE EMAIL = '$EMAIL'";
// $result = mysqli_query($con, $sql);
// if ($result->num_rows > 0) {
// while ($row = $result->fetch_assoc()) {
// // $ID = $row['ID'];
// $FIRST_NAME = $row['FIRST_NAME'];
// // $LAST_NAME = $row['LAST_NAME'];
// // $EMAIL = $row['EMAIL'];
// // $PASSWORD = $row['PASSWORD'];
// // $USER_TYPE = $row['USER_TYPE'];
// }
// }
if(isset($_POST['submit'])){
$first_name=$_POST['first_name'];
$last_name=$_POST['last_name'];
$phone=$_POST['phone'];
$date=$_POST['date'];
$vac_type=$_POST['vac_type'];
$fac_name=$_POST['fac_name'];
$address=$_POST['address'];
$sql="insert into `ordervac`(`first_name`,`last_name`,`phone`,`date`,`vac_type`,`fac_name`,`address`)
values('$first_name','$last_name','$phone','$date','$vac_type','$fac_name','$address')";
$result=mysqli_query($con,$sql);
if($result){
// echo "Data inserted successfully";
header('location:orderDisplay.php');
}
else{
die(mysqli_error($con));
}
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Online Vaccination Portal</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Online Vaccination Portal</h1>
<div class="navbar">
<a href="home.php">Home</a>
<a href="news.php">News</a>
<div class="dropdown">
<button class="dropbtn">Information
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="about.php">About</a>
<a href="vaccination.php">Vaccination Information</a>
<a href="appointment.php">Appointment</a>
<a href = "foreign.php">Foreigner Appointment</a>
<a href = "vacappointment.php">All vaccination details</a>
<a href = "docdetails.php"> Doctor availabilities</a>
<a href = "order.php">Order your vaccine</a>
<a href="center.php">Vaccination Centers</a>
<a href="contact.php">Contact Us</a>
</div>
</div>
<?php
session_start();
if (isset($_SESSION['FIRST_NAME'])) {
echo '<a href="home.php" class="navbar-btn" onclick="return confirmLogout();">Sign Out</a>';
echo '<script>
function confirmLogout() {
var result = confirm("Are you sure you want to sign out?");
if (result) {
return true; // Proceed with the sign out process
} else {
return false; // Cancel the sign out process
}
}
</script>';
} else {
echo '<a href="login.php" class="navbar-btn">Login</a>';
}
?>
</div>
</header>
<main>
<section id="section" class="section">
<h2>Order your vaccine</h2>
<form method="post">
<label for="first_name">First name:</label>
<input type="text" id="first_name" autocomplete="off" placeholder="Enter your first name" name="first_name" required><br><br>
<label for="last_name">Last name:</label>
<input type="text" id="last_name" autocomplete="off" placeholder="Enter your last name" name="last_name" required><br><br>
<label for="phone">Phone:</label>
<input type="text" id="phone" autocomplete="off" placeholder="Enter your phone number" name="phone" required<br><br>
<label for="date">Choose your date:</label>
<input type="date" id="date" name="app_date"><br><br>
<label for="vaccine-type">Choose your vaccine:</label>
<select id="vaccine-type" name="vac_type">
<option>Choose</option>
<option value="pfizer">Pfizer-BioNTech</option>
<option value="moderna">Moderna</option>
<option value="j&j">Johnson & Johnson</option>
</select><br><br>
<label for="fac_name">Facility name:</label>
<input type="text" id="fac_name" autocomplete="off" placeholder="Enter your facility name" name="fac_name" required><br><br>
<label for="address">Address:</label>
<input type="text" id="address" autocomplete="off" placeholder="Enter your address" name="address" required><br><br>
<button class="r_btn" type="reset" style="background-color: rgb(243, 9, 9); width: 100%; color: #fff; border: none; padding: 15px 10px; border-radius: 5px; font-size: 15px; cursor: pointer; transition: background-color 0.3s ease-in-out;" onmouseover="this.style.backgroundColor='#8b0000';" onmouseout="this.style.backgroundColor='rgb(250, 9, 9)';" class="r_btn">Reset</button>
<button name="submit" type="submit" onsubmit="showAlert()">Submit</button>
<script>
function showAlert() {
alert("Order scheduled!");
}
</script>
<button id="onclick" onclick="toTop()">Back To Top</button>
</form>
</section>
</main>
<footer>
<p>© 2023 Online Vaccination Portal</p>
</footer>
<script src="order.js"></script>
</body>
</html>