Jump to content

Not printing mySQL SELECT statement to html page?


hoggie1790

Recommended Posts

Hi, im new to the forums so sorry if this is posted in the wrong place or formatted incorrectly.

 

I have a mySQL database that i want to access and retrieve the price of items in a table. From the instructions i have followed i cant seem to get it to work.

 

Basically when i load the page it simply prints: query("SELECT * FROM Wines") as $row) { print $row['price']; } ?>  rather than the price of wine in my database.

 

Heres my code:

<?php
$WineDB = new PDO(				
'mysql:host=(HostName);
dbname=wines',					
'abc123',				
'XXXXXX'
);
foreach($WineDB->query("SELECT * FROM Wines") as $row)
{
      print $row[‘price’];
}
?>

 

Maybe im missing some punctuation?

 

Thanks in advance for any help.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.