-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete_flight_details_form_handler.php
74 lines (73 loc) · 1.61 KB
/
delete_flight_details_form_handler.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
<?php
session_start();
?>
<html>
<head>
<title>Delete Flight Schedule Details</title>
</head>
<body>
<?php
if(isset($_POST['Delete']))
{
$data_missing=array();
if(empty($_POST['flight_no']))
{
$data_missing[]='Flight No.';
}
else
{
$flight_no=trim($_POST['flight_no']);
}
if(empty($_POST['departure_date']))
{
$data_missing[]='Departure Date';
}
else
{
$departure_date=trim($_POST['departure_date']);
}
if(empty($data_missing))
{
require_once('Database Connection file/mysqli_connect.php');
$query="DELETE FROM Flight_Details WHERE flight_no=? AND departure_date=?";
$stmt=mysqli_prepare($dbc,$query);
mysqli_stmt_bind_param($stmt,"ss",$flight_no,$departure_date);
mysqli_stmt_execute($stmt);
$affected_rows=mysqli_stmt_affected_rows($stmt);
//echo $affected_rows."<br>";
// mysqli_stmt_bind_result($stmt,$cnt);
// mysqli_stmt_fetch($stmt);
// echo $cnt;
mysqli_stmt_close($stmt);
mysqli_close($dbc);
/*
$response=@mysqli_query($dbc,$query);
*/
if($affected_rows==1)
{
echo "Successfully Deleted";
header("location: delete_flight_details.php?msg=success");
}
else
{
echo "Submit Error";
echo mysqli_error();
header("location: delete_flight_details.php?msg=failed");
}
}
else
{
echo "The following data fields were empty! <br>";
foreach($data_missing as $missing)
{
echo $missing ."<br>";
}
}
}
else
{
echo "Delete request not received";
}
?>
</body>
</html>