require_once("php/config.php"); $bid = $_GET['bid']; $key = $_GET['auth']; if ($bid && $key) $booking = get_reservation($bid); if ($bid) $booking = get_reservation($bid); if (!$booking || $booking["key"] != $key) $security_error = true; elseif (!$_GET['step']) $step = 1; else $step = $_GET['step']; if (!$security_error) require_once("php/processing.php"); ?>