Update report.php
[clinton/MarylandElectronicPetitionSignature.git] / hard_copy.php
index d457fdf..88bb7a2 100644 (file)
@@ -4,7 +4,7 @@
 // y how far from top
 include_once('/var/www/secure.php'); 
 $id = $_COOKIE['pID'];
-$q = "select * from petitions where id = '$id'";
+$q = "select * from petitions where petition_id = '$id'";
 $r = $petition->query($q);
 $d = mysqli_fetch_array($r);
 
@@ -26,22 +26,22 @@ $font_path_sig = 'files/Claston Script.ttf';
 $DOB = $_COOKIE['pDOB'];
 $SIGNED = date('Y-m-d');
 
-//if ( $_COOKIE['pCOUNTY'] == 'Baltimore City'){
+if ( $_COOKIE['pCOUNTY'] == 'Baltimore City'){
   // City Checkbox
   $cord = $d['text_cord_cityX'];
   $array = explode(",",$cord);
-  $debug = "$array[0], $array[1], $array[2], $array[3]";
+  $debug = "$id : $cord : $array[0]";
   imagettftext($jpg_image, $array[0], $array[1], $array[2], $array[3], $black, $font_path, 'X');
-//}else{
+}else{
   // County on Petition
   $cord = $d['text_cord_county'];
   $array = explode(",",$cord);
   imagettftext($jpg_image, $array[0], $array[1], $array[2], $array[3], $black, $font_path, str_replace('County','',$_COOKIE['pCOUNTY']) );
-//}
+}
 
 // name
-//imagettftext($jpg_image, 50, 0, 350, 1070, $black, $font_path, $_COOKIE['pNAME']);
-imagettftext($jpg_image, 50, 0, 350, 1070, $black, $font_path, $debug);
+imagettftext($jpg_image, 50, 0, 350, 1070, $black, $font_path, $_COOKIE['pNAME']);
+//imagettftext($jpg_image, 50, 0, 350, 1070, $black, $font_path, $debug);
 
 // address
 imagettftext($jpg_image, 50, 0, 400, 1300, $black, $font_path,  $_COOKIE['pADDRESS']);