diff --git a/public/requestSign.php b/public/requestSign.php index 7d27bca..1cbbef3 100644 --- a/public/requestSign.php +++ b/public/requestSign.php @@ -35,7 +35,7 @@ if (!isset($wire)) { $conn = new mysqli("localhost", "mileslinden", "Daiso@6969", "mileslinden"); $query = $conn->prepare( - "INSERT INTO subscribers (`address`, `quantity`, `wire_stake`, `join_date`) VALUES (?, ?, ?, ?)" + "INSERT INTO signs (`address`, `quantity`, `wire_stake`, `join_date`) VALUES (?, ?, ?, ?)" ); if (!$query) { http_response_code(500); diff --git a/public/volunteer.php b/public/volunteer.php index 1aa215f..fa30de0 100644 --- a/public/volunteer.php +++ b/public/volunteer.php @@ -61,7 +61,7 @@ if (strlen($phone_num) !== 10) { $conn = new mysqli("localhost", "mileslinden", "Daiso@6969", "mileslinden"); $query = $conn->prepare( - "INSERT INTO subscribers (`email`, `full_name`, `phone`, `position`, `join_date`) VALUES (?, ?, ?, ?, ?)" + "INSERT INTO volunteers (`email`, `full_name`, `phone`, `position`, `join_date`) VALUES (?, ?, ?, ?, ?)" ); if (!$query) { http_response_code(500);