Hi all. I can't find the error in this script. I put a whitespace where I'm getting a 'parse error' returned from the browser. Can you guys help me find what's wrong?
if ($myrow = mysql_fetch_array($result))
{
$num_results=mysql_num_rows($result);
$trip_id=urlencode($myrow["trip_id"]);
echo "<strong>Number of trips found: </strong><big><strong><font color=#008000>$num_results</font></strong></big>";
do{
echo "<TABLE BGCOLOR=#003366 WIDTH=700 BORDER=1 CELLPADDING=4 CELLSPACING=1>";
echo "<tr>";
echo "<td bgcolor=#EEE8CD align=center><strong>JOURNEYS</strong></td>";
echo "<td bgcolor=#EEE8CD align=center><strong>Trip Name</strong></td>";
echo "<td bgcolor=#EEE8CD align=center><strong>Region</strong></td>";
echo "<td bgcolor=#EEE8CD align=center><strong>Country</strong></td>";
echo "<td bgcolor=#EEE8CD align=center><strong>Description</strong></td>";
echo "<td bgcolor=#EEE8CD align=center><strong>More Info</strong></td></tr>";
echo "<tr><td valign=top bgcolor=#FFFFFF>";
echo "<img src=".$image_path./.$myrow['icon']." width=80 height=90>";
echo "</td>;
echo "<td valign=top bgcolor=#FFFFFF width=80><strong>";
echo $myrow['trp_name'];
echo "</strong></td>";
echo "<td valign=top bgcolor=#FFFFFF>";
echo $myrow['region'];
echo "</td>";
echo "<td valign=top bgcolor=#FFFFFF>";
echo $myrow['country'];
echo "</td>";
echo "<td valign=top bgcolor=#FFFFFF>";
echo $myrow['description'];
echo "</td>";
echo "<td valign=middle align=center bgcolor=#D8D8D8 width=70><strong>";
echo "<a href='more_info2.php?trip_id=$trip_id'>More Info</a>";
echo "</strong></td></tr>;
echo "<tr><td colspan=6>";
echo $myrow['climate_bar'];
echo "</td></tr></table>";
}
while ($myrow=mysql_fetch_array($result));
}
else
{
echo "Sorry, no records were found.";
}