Update soft_copy.php
authorPatrick McGuire <insidenothing@gmail.com>
Thu, 7 May 2020 18:15:10 +0000 (14:15 -0400)
committerGitHub <noreply@github.com>
Thu, 7 May 2020 18:15:10 +0000 (14:15 -0400)
soft_copy.php

index 0422463..558147e 100644 (file)
@@ -17,15 +17,16 @@ if ($_COOKIE['pVTRID'] != $d['VTRID']){
 $q2 = "select * from VoterList where VTRID = '$d[VTRID]' ";
 $r2 = $petition->query($q2);
 $d2 = mysqli_fetch_array($r2);
- $FIRSTNAME  = $d2['FIRSTNAME'];
- $MIDDLENAME = $d2['MIDDLENAME'];
- $LASTNAME   = $d2['LASTNAME'];
+ $FIRSTNAME         = $d2['FIRSTNAME'];
+ $MIDDLENAME        = $d2['MIDDLENAME'];
+ $LASTNAME          = $d2['LASTNAME'];
+ $ADDRESS           = $d['ADDRESS'];
  $RESIDENTIALCITY   = $d2['RESIDENTIALCITY'];
  $COUNTY            = $d2['COUNTY'];
  $RESIDENTIALZIP5   = $d2['RESIDENTIALZIP5'];
- $full_name = "$FIRSTNAME $MIDDLENAME $LASTNAME";
- $address =  "$ADDRESS $RESIDENTIALCITY $RESIDENTIALZIP5";
-
+ $full_name         = "$FIRSTNAME $MIDDLENAME $LASTNAME";
+ $address           =  "$ADDRESS $RESIDENTIALCITY $RESIDENTIALZIP5";
 
 
 // imagettftext ( resource $image , float $size , float $angle , int $x , int $y , int $color , string $fontfile , string $text )