updateVirtualAirline.php 213 Bytes
<?php
require_once 'classes/realops.php';


$get = new Get();
$db = $get->connect();

$update = $db->updateRow("UPDATE tbl_bookings SET va = ? WHERE id = ?", array($_POST['va'], $_POST['flights']));

echo "1";

?>