for ($i=0; $i <$num_results; $i++)
{
$row = mysql_fetch_object($result);
echo "<li>";
echo stripslashes($row->fmt_date)."\t";
echo stripslashes($row->start);
echo stripslashes($row->sm);
echo stripslashes($row->end);
echo stripslashes($row->em)."\t";
echo stripslashes($row->name)."\t";
if ($street)// Why doesn't this work?
{ echo " - "; }// It should work!
echo stripslashes($row->street)."\t";
echo stripslashes($row->city)."\t";
echo stripslashes($row->phone)."\t";
echo stripslashes($row->price)."\t";
echo stripslashes($row->directions);
echo "</li>";
}
echo '</ul><br />';