-
Notifications
You must be signed in to change notification settings - Fork 0
/
vehicleInsurance.php.bak
149 lines (139 loc) · 5.21 KB
/
vehicleInsurance.php.bak
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
138
139
140
141
142
143
144
145
146
147
148
149
<?php
session_start();
if(!isset($_SESSION["user"])){
header("location:registration_login.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta bane="viewport" content="width=device-width,initial-scale=1.0">
<link rel="stylesheet" href="technicalVisit.css" >
<title>Vehicle Insurance</title>
</head>
<body>
<header>
<h2 class="logo">Logo</h2>
<nav class="navigation">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Services</a>
<a href="#">Contact</a>
</nav>
</header>
<?php
if(isset($_POST["register"])){
$Owner = $_POST["Owner"];
$Dealer = $_POST["Dealer"];
$Email = $_POST["Email"];
$carReg = $_POST["carReg"];
$Notice = $_POST["Notice"];
$Issuedate = $_POST["Issuedate"];
$Expirydate = $_POST["Expirydate"];
$errors = array();
if(empty($Owner)){
array_push($errors, "<b>Owner required</b>");
}
else if(empty($Dealer)){
array_push($errors, "<b>Dealer required</b>");
}
else if(empty($Email)){
array_push($errors, "<b>Email required</b>");
}
else if(empty($carReg)){
array_push($errors, "<b>Car registration number required</b>");
}
else if(empty($Issuedate)){
array_push($errors, "<b>Issued date required</b>");
}
else if(empty($Expirydate)){
array_push($errors, "<b>Expiry date required</b>");
}
else if(!filter_var($Email,FILTER_VALIDATE_EMAIL)){
array_push($errors,"Invalid email");
}
else if(!preg_match("/(\b((AD)|(CE)|(EN)|(ES)|(LT)|(NO)|(NW)|(OU)|(SU)|(SW))[0-9]{3}[A-Z]{2}\b)|(\b((AD)|(CE)|(EN)|(ES)|(LT)|(NO)|(NW)|(OU)|(SU)|(SW))[0-9]{4}[A-Z]{1}\b)/",$carReg)){
array_push($errors,"Invalid Registration Number");
}
else if($Issuedate >= $Expirydate){
array_push($errors,"Invalid date");
}
require_once("admin_connect.php");
if(!empty($Owner) AND !empty($Dealer) AND !empty($Email) AND !empty($carReg) AND !empty($Issuedate) AND !empty($Expirydate)){
$sql = "SELECT * FROM vehicleinsurance WHERE carReg = '$carReg'";
$result = mysqli_query($conn, $sql);
$rowCount = mysqli_num_rows($result);
if($rowCount > 0){
array_push($errors, "<b>Car registration number already inputted</b>");
}
}
if(count($errors)>0){
foreach ($errors as $error){
echo "$error";
}
}else{
if(!empty($Owner) AND !empty($Dealer) AND !empty($Email) AND !empty($carReg) AND !empty($Issuedate) AND !empty($Expirydate))
{
$sql = "INSERT INTO vehicleinsurance(Owner,Dealer,Email,carReg,Notice,Issuedate,Expirydate) values(?,?,?,?,?,?,?)";
$stmt = mysqli_stmt_init($conn);
$prepare = mysqli_stmt_prepare($stmt,$sql);
if($prepare){
mysqli_stmt_bind_param($stmt,"sssssss",$Owner,$Dealer,$Email,$carReg,$Notice,$Issuedate,$Expirydate);
mysqli_stmt_execute($stmt);
echo "<div class = 'alert alert-success'>You have registered successfully</div>";
}else{
die("Something went wrong");
}
}
}
}
?>
<div class="wrapper">
<div class="form-box register">
<h2>Vehicle Insurance</h2>
<form action="vehicleInsurance.php" method="post">
<div class="input-box">
<span class="icon"><img src="pictures/user.png" style="width:30px;"/></span>
<input type="text" name="Owner">
<label>Name of car owner</label>
</div>
<div class="input-box">
<span class="icon"><img src="pictures/user.png" style="width:30px;"/></span>
<input type="text" name="Dealer">
<label>Name of Dealer</label>
</div>
<div class="input-box">
<span class="icon"><img src="pictures/email.png"/></span>
<input type="email" name="Email">
<label>Car owner's Email</label>
</div>
<div class="input-box">
<span class="icon"><img src="pictures/registration.png" style="width:30px;height:30px;"/></span>
<input type="text" name="carReg">
<label>Car Registration Number</label>
</div>
<div class="input-box">
<span class="icon"><img src="pictures/notice.jpg" style="width:30px;height:30px;"/></span>
<textarea rows="3" columns="45" name="Notice" class="detail" placeholder="NFurther Notes"></textarea>
<!--<label>Details</label>-->
</div>
<div class="input-box">
<input type="date" name="Issuedate">
<label>Issued Date</label>
</div>
<div class="input-box">
<input type="date" name="Expirydate">
<label>Expiry Date</label>
</div>
<input type="submit" name="register" class="btn" value="Register">
<div class="logout">
<a href="admin_logout.php" class="logout-link">Done</a>
</div>
</form>
</div>
</div>
<script src="registration_login.js"></script>
</body>
</html>