Whats a simple command to echo databse values on a page.
This is how i thought it would work, however its not printing the information!! Any help much appreciated. It won't be to hard for all the php gurus we have here!
<?php
$query = "SELECT products_price WHERE product_id='1'";
$result = mysql_query($query)
echo ("$result");
?>