echo"Failed to connect to MySQL: ".mysqli_connect_error();
echo"Failed to connect to MySQL: ".mysqli_connect_error();
}
}
$data=mysqli_query($con,"SELECT Passenger_Id FROM Passenger_Profile WHERE First_Name = '$First_Name' AND Last_Name = '$Last_Name' AND Flight_Number = '$Flight_Number'");
//$data = mysqli_query($con, "SELECT Passenger_Id FROM Passenger_Profile WHERE First_Name = '$First_Name' AND Last_Name = '$Last_Name' AND Flight_Number = '$Flight_Number'");
$data=mysqli_query($con,"SELECT Profile_Id FROM Passenger_Profile WHERE First_Name = '$First_Name' AND Last_Name = '$Last_Name'");
//And display the results
//And display the results
while($row=mysqli_fetch_array($data))
while($row=mysqli_fetch_array($data)){
{
// echo "$row[0]". " ";
echo"$row[0]"." ";
// echo "<br>";
echo"<br>";
$Profile_Id=$row[0];
;
echo$Profile_Id;
}
$data2=mysqli_query($con,"SELECT Flight_Id FROM FlightData WHERE Flight_Number = '$Flight_Number'");
while($row2=mysqli_fetch_array($data2)){
// echo "$row[0]". " ";
// echo "<br>";
$Flight_Id=$row2[0];
echo$Flight_Id;
}
}
//And display the results
// while($row = mysqli_fetch_array( $data )) {
// echo "$row[0]". " ";
// echo "<br>";
//
// }
//This counts the number or results. If there aren't any, it gives the user a "no match" message
//This counts the number or results. If there aren't any, it gives the user a "no match" message
$anymatches=mysqli_num_rows($data);
$anymatches=mysqli_num_rows($data);
if($anymatches==0)
if($anymatches==0){
{
echo"Sorry, but we can not find an entry to match your query<br><br>";
echo"Sorry, but we can not find an entry to match your query<br><br>";
}
}
...
@@ -341,12 +338,12 @@ function test_input($data) {
...
@@ -341,12 +338,12 @@ function test_input($data) {
// }
// }
//break;
//break;
//
//
// if (isset($_GET['Passenger_Id#
// if (isset($_GET['Passenger_Id#
// '])) {
// '])) {
//
//
// $Passenger_Id = $_GET['Passenger_Id'];
// $Passenger_Id = $_GET['Passenger_Id'];
// echo $Passenger_Id;
// echo $Passenger_Id;
// }
// }
echo"Your input:::::::::<br>";
echo"Your input:::::::::<br>";
...
@@ -355,10 +352,19 @@ function test_input($data) {
...
@@ -355,10 +352,19 @@ function test_input($data) {
echo"".$Flight_Number."<br>";
echo"".$Flight_Number."<br>";
//sql to delete a record
//sql to delete a record
$data=mysqli_query($con,"DELETE FROM Ticket_Info WHERE Passenger_fk = $row[0]");
$data3=mysqli_query($con,"DELETE FROM Passenger_Profile WHERE Profile_Id = '$Profile_Id'");
if(mysqli_query($con,$data)){
if(mysqli_query($con,$data4)){
echo"Record deleted successfully";
echo"Record deleted successfully";
}else{
}
else{
echo"Error deleting record: ".mysqli_error($con);
}
$data4=mysqli_query($con,"DELETE FROM Ticket_Info WHERE Profile_Id = '$Profile_Id' AND Flight_Id = '$Flight_Id'");