I am running into a problem and I have no idea why I get the following error
Parse error: parse error, unexpected '{' in /home/bparis/public_html/wintertravel.php on line 30
Here is the code that will go to that error message
<?php
$dbh=mysql_connect ("localhost", "", "*") or die ('I cannot connect to the database because: ' .
mysql_error());
mysql_select_db ("bparis_website");
$WinterTravel = mysql_query("select aFeatureTitle from website_bparis.tbl_Features while website_bparis.aFeatureCategory = Winter Travel");
while($WinterTravelArray =mysql_fetch_array($WinterTravel)
{
echo $WinterTravelArray;
}
?>
I made sure that there is information in the database as I added it right into the database without using a web form.
Any help would be appreciated.
Andrea