-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathadd_models.php
129 lines (110 loc) · 4.83 KB
/
add_models.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
<?php
require('config/def.php');
require('config/db.php');
$duplicate = false;
if(isset($_POST['submit'])){
$v_type = mysqli_real_escape_string($conn, $_POST['v_type']);
$model = mysqli_real_escape_string($conn, $_POST['model']);
$model_year = $_POST['model_year'];
$base = $_POST['base'];
$rate = $_POST['rate'];
$error = array();
if(empty($v_type) || $v_type == " "){
$error[] = 'You forgot to enter the vehicle type!';
}
if(empty($model) || $model == " "){
$error[] = 'You forgot to specify the model!';
}
if(empty($model_year)){
$error[] = 'You forgot to specify the model year!';
}
if(empty($base)){
$error[] = 'You forgot to specify the base price!';
}
if(empty($rate)){
$error[] = 'You forgot to specify the rate!';
}
$result = $conn->prepare("SELECT m_id FROM Model");
$result->execute();
$mid_array = [];
foreach ($result->get_result() as $row)
{
$mid_array[] = $row['m_id'];
}
sort($mid_array);
$j = 1;
foreach ($mid_array as $i) {
if($j != $i){
break;
}
$j++;
}
$m_id = $j;
$cap_v_type = strtoupper($v_type);
$cap_model = strtoupper($model);
//Checking for already inserted model with same info
$result = $conn->prepare("SELECT * FROM Model WHERE UPPER(v_type) = '$cap_v_type' AND UPPER(model) = '$cap_model' AND model_year = '$model_year'");
$result->execute();
$tuples = $result->get_result()->fetch_all();
$duplicate = count($tuples) > 0;
if(!$duplicate && empty($error)){
$result = $conn->prepare("INSERT INTO Model VALUES('$m_id', '$v_type', '$model', '$model_year', '$base', '$rate')");
if($result->execute()){
header('Location: '.ROOT_URL.'');
}
else{
echo '<br>MySQLi error: '.mysqli_error($conn);
}
}
}
//Close sql connection
mysqli_close($conn);
?>
<?php include('inc/header.php');?>
<?php $_POST['submit'] = null;?>
<div class="container">
<h1>A New Addition</h1>
<?php if($duplicate): ?>
<div class="alert <?php echo 'alert-danger'; ?>"><?php echo 'Model already exists! Enter a new model'; ?></div>
<?php endif; ?>
<?php if(!empty($error)): ?>
<div class="alert <?php echo 'alert-danger'; ?>"><?php echo 'You have not filled one or more field(s)! Please fill each field!'; ?></div>
<?php endif; ?>
<form method="POST" action="<?php echo $_SERVER['PHP_SELF'] ?>">
<div class="form-group">
<label for="vehi-type">Vehicle Type</label>
<input type="text" name="v_type" id="vehi-type" class="form-control" aria-describedby="help1">
<small id="help1" class="form-text text-muted">Vehicle type (car, motorcycle etc.)</small>
</div>
<div class="row ">
<div class="col-6 form-group">
<label for="vehi-model">Model Name</label>
<input type="text" name="model" id="vehi-model" class="form-control" aria-describedby="help2">
<small id="help2" class="form-text text-muted">Vehicle model (Swift, Honda City etc.)</small>
</div>
<div class="col-6 form-group">
<label for="vehi-year">Model Year</label>
<input type="number" name="model_year" min="1900" max="2200" step="1" id="vehi-year" class="form-control" aria-describedby="help3">
<small id="help3" class="form-text text-muted">Model year</small>
</div>
</div>
<div class="row ">
<div class="col-6 form-group">
<label for="vehi-base">Base Price</label>
<input type="number" step= "0.01" min="0" name="base" id="vehi-base" class="form-control" aria-describedby="help4">
<small id="help4" class="form-text text-muted">Base price for the vehicle</small>
</div>
<div class="col-6 form-group">
<label for="vehi-rate">Rate (per day)</label>
<input type="number" step= "0.01" min="0" name="rate" id="vehi-rate" class="form-control" aria-describedby="help4">
<small id="help4" class="form-text text-muted">Rate for the vehicle</small>
</div>
</div>
<div>
<input type = "submit" name="submit" class="btn btn-primary" value="submit">
</div>
</form>
</div>
<?php require('inc/footer.php');?>
</body>
</html>