I can't figure this one out... Am I overlooking something?
Parse error: parse error in /usr/local/etc/httpd/htdocs/take_out/search_reviews_static2.php on line 72
<head>
<title>Journeys Search Results</title>
</head>
<body>
<?
include ("http://journeys-intl.com/includes/header.html");
//Split $country into an array and count the number of elements to determine how many loops to run
$subtrips = explode(", ", $country);
$numsubtrips = count($subtrips);
echo "<strong>Number of reviews found: </strong><big><strong><font color=#008000>$numsubtrips</font></strong></big><br><br>";
echo "<strong><font size=2 face=arial><img src='http://journeys-intl.com/images/arrow.gif' border=0 alt=arrow.gif><a href='javascript: history.go(-1)'> Back</a></font></strong><br>";
//Output Table
//Give it style
if ($subtrips[0]){
for($i=0; $i<$numsubtrips; $i++) {
$query = "SELECT * FROM trip_reviews WHERE country like '$country[$i]'";
$result = mysql_query($query);
$myrow = mysql_fetch_array($result);
echo "<br><TABLE BGCOLOR=#003366 WIDTH=700 BORDER=1 CELLPADDING=4 CELLSPACING=1>";
echo "<tr>";
echo "<td bgcolor=#EEE8CD align=center><strong>Trip Name</strong></td>";
echo "<td bgcolor=#EEE8CD align=center><strong>Country</strong></td>";
echo "<td bgcolor=#EEE8CD align=center width=300><strong>Description</strong></td>";
echo "<td bgcolor=#EEE8CD align=center><strong>REVIEW</strong></td></tr>";
echo "<td valign=top bgcolor=#FFFFFF width=80><strong>";
echo $myrow['trp_name'];
echo "</strong></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='trip_reviews.php?trip_id=$trip_id'>Read It!</a>";
echo "</strong></td></tr></table><br><br>";
}
}
if (!$subtrips[0]) {
echo "Sorry, no records were found.";
echo "<br><br><strong><font size=2 face=arial><img src='http://journeys-intl.com/images/arrow.gif' border=0 alt=arrow.gif><a href='javascript: history.go(-1)'> Back</a></font></strong>";
}
include ("http://journeys-intl.com/includes/footer2.html");
?>