From a6369b98ee83210994133bf76fb82ba82c0540e8 Mon Sep 17 00:00:00 2001 From: Patrick McGuire Date: Wed, 6 May 2020 22:57:23 -0400 Subject: [PATCH] Update is_the_information_correct.php --- is_the_information_correct.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/is_the_information_correct.php b/is_the_information_correct.php index 2961877..9659689 100644 --- a/is_the_information_correct.php +++ b/is_the_information_correct.php @@ -9,7 +9,7 @@ if ($web_first_name != '' && $web_last_name != '' && $web_house_number != '' && //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'"; +$q = "select VTRID from VoterList where LASTNAME = '$web_last_name' and FIRSTNAME = '$web_first_name' and HOUSE_NUMBER = '$web_house_number' and RESIDENTIALZIP5 = '$web_zip_code'"; $r = $petition->query($q); $d = mysqli_fetch_array($r); if ($d['VTRID'] != ''){ -- 2.20.1