Logo

GitLab

Sign in

David Zhong / realops-website

  • Back to Dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 4
  • Merge Requests 0
  • Labels
  • Wiki
  • realops-website
  • old_pages
  • updateVirtualAirline.php
  • Initial Push of Hayden's Site ...
    35b93cc9
    2015 System
    Hayden McClure authored
    2015-06-23 22:33:52 +1000  
    Browse Code ยป
updateVirtualAirline.php 213 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
<?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";

?>