diff --git a/httpCallBack.php b/httpCallBack.php index 152337b..79c1f50 100644 --- a/httpCallBack.php +++ b/httpCallBack.php @@ -1,13 +1,15 @@ "error", "message" => "Invalid Request"])); } require "config.php"; -$uuid = $_POST["uuid"]; -$event_code = $_POST["event_code"]; -$sub_event_code = $_POST["sub_event_code"]; -$password = $_POST["password"]; +$uuid = $_superpost["uuid"]; +$event_code = $_superpost["event_code"]; +$sub_event_code = $_superpost["sub_event_code"]; +$password = $_superpost["password"]; $event_data = getEventData($con, $event_code); if ($event_data === false) { die(json_encode(["status" => "error", "message" => "Event not found"]));