JohnF
Members
-
Joined
-
Last visited
Reputation Activity
-
JohnF reacted to Chris Day in Google charts with PHP & MYSQL not displayedYour issue is the "BARRON'S EDUCATIONAL" record in your database or any record within the database that contains a single quote.
You could remove this quote or escape it like this
Replace:
$arrPie[]="['".$pub."',".$qty."]";With: $arrPie[]="['".addslashes($pub)."',".$qty."]"; -
JohnF reacted to inlinedivblock in How to Import Excel Data To MySQL Using PHPawesome...
-
JohnF reacted to Chris Day in Need help passing hidden form field (PHP)You use it like anyother input i.e.
<input type="hidden" name="hotelName" value="Some Hotel" /> When the form is submited use $_POST['hotelName'] and that will return a value of Some Hotel. looking at your script you are missing several fields.
p.s next time please use [code.][/.code] tags (minus the full stops) as it is much easier for us to debug