These details have been submitted as your PPR. We look forward to seeing you at Swansea Airport!

To cancel your PPR, use the button below. It is currently not possible to make any changes here, but please feel free to cancel if you need to and create a new PPR.

query($sql); logJournal($conn, $entryId, "Marked Canceled by Pilot"); $conn->close(); echo''; } function opView($entryId) { $conn = connectDb(); $sql = "SELECT * FROM submitted WHERE status = 'NEW' AND id = " . $entryId; $result = $conn->query($sql); if ($result->num_rows > 0) { // Output data of the row $row = $result->fetch_assoc(); echo '
'; echo '

Aircraft Reg: ' . $row['ac_reg'] . "

"; echo "

Aircraft Type: " . $row['ac_type'] . "

"; echo "

Callsign: " . $row['ac_call'] . "

"; echo "

Captain's Name: " . $row['captain'] . "

"; echo "

Arriving From: " . $row['in_from'] . "

"; echo "

POB IN: " . $row['pob_in'] . "

"; echo "

ETA: " . $row['eta'] . "

"; echo "

Fuel Required: " . $row['fuel'] . "

"; echo "

POB OUT: " . $row['pob_out'] . "

"; echo "

Outbound To: " . $row['out_to'] . "

"; echo "

ETD: " . $row['etd'] . "

"; echo "

Email Address: " . $row['email'] . "

"; echo "

Phone: " . $row['phone'] . "

"; echo "

Notes: " . $row['notes'] . "

"; echo ''; } else { echo ""; echo''; } $conn->close(); } ?>