Forum Moderators: coopster
SELECT city FROM geo where id=1234
If I echo the result out in the php portion of the script using
echo $row['city'];
The result is echoed fine, however if I try to echo it out in the html part of the script using the following
<p><?php echo $row['city'];?></p>
No result is returned.