From bb77cf2d534baf932de39111176ccc2cd882a569 Mon Sep 17 00:00:00 2001 From: Patrick McGuire Date: Wed, 6 May 2020 22:41:16 -0400 Subject: [PATCH] Update is_the_information_correct.php --- is_the_information_correct.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/is_the_information_correct.php b/is_the_information_correct.php index 7b6acbb..fe5483e 100644 --- a/is_the_information_correct.php +++ b/is_the_information_correct.php @@ -6,7 +6,7 @@ $web_zip_code = $_COOKIE['web_zip_code']; if ($web_first_name != '' && $web_last_name != '' && $web_house_number != '' && $web_zip_code != ''){ // ok to check for records }else{ - header('Location: warning_incomplete.php'); + //header('Location: warning_incomplete.php'); } include_once('header.php'); $q = "select VTRID from VoterList where LASTNAME = '$web_last_name' and FIRSTNAME = '$web_first_name' and HOUSE_NUMBER = '$web_house_number' and MAILINGZIP5 = '$web_zip_code'"; @@ -15,7 +15,7 @@ $d = mysqli_fetch_array($r); if ($d['VTRID'] != ''){ $VTRID = $d['VTRID']; }else{ - header('Location: warning_not_found.php'); + //header('Location: warning_not_found.php'); } ?> -- 2.20.1