-
Notifications
You must be signed in to change notification settings - Fork 0
/
damageAdd.php
80 lines (66 loc) · 2.03 KB
/
damageAdd.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
<!DOCTYPE html>
<html>
<body>
<?php
require "menu.php";
require 'connectToDB.php';
$id = $dmg = "";
$error = "";
if(isset($_POST["submit"]))
{
//isset()
$id = isset($_POST['id']) ? $_POST['id'] : "";
//empty()
$id = !empty($_POST['id']) ? $_POST['id'] : "";
//isset()
$dmg = isset($_POST['dmg']) ? $_POST['dmg'] : "";
//empty()
$dmg = !empty($_POST['dmg']) ? $_POST['dmg'] : "";
if(is_numeric($id))
{
$query = "INSERT INTO `damages/malfunctions` VALUES ('$id','$dmg')";
if (!mysqli_query($mysql_connection, $query)) {
$er = mysqli_error($mysql_connection);
$error = "<div class='alert alert-danger alert-dismissable fade in'>
<strong>$er<strong>.
</div>";
}
else
{
mysqli_close($mysql_connection);
header("Location:damages.php");
}
}
else
{
$error = "<div class='alert alert-danger alert-dismissable fade in'>
<strong>Ο κωδικός αυτοκινήτου πρέπει να είναι αριθμός<strong>.
</div>";
}
}
?>
<body>
<div class="container">
<form method="post" action = "damageAdd.php">
<?php echo $error;?>
<div class="form-group row">
<label class="col-md-2 control-label">Vehicle ID</label>
<div class="col-md-5">
<input type="text" class="form-control" name="id" placeholder="Vehicle ID" value="<?php echo $id;?>" required />
</div>
</div>
<div class="form-group row">
<label class="col-md-2 control-label">Damages/Malfunctions</label>
<div class="col-md-5">
<input type="text" class="form-control" name="dmg" placeholder="Damages/Malfunctions" value="<?php echo $dmg;?>" required />
</div>
<br></br>
<br></br>
<div class="form-group row">
<div class="col-md-offset-2 col-md-7">
<button type="submit" class="btn btn-success" name="submit">Submit</button>
</div>
</div>
</form>
</body>
</html>