נסה אולי את זה
PHP קוד:
<?
while ($recordeset=@mysql_fetch_array($theresult))
{
echo "<H3>".$recordeset["title"]."</H3>";
echo "<b>במועדון: </b>".$recordeset["place"]."<b>";
echo "<br>";
echo "לגילאי: </b>".$recordeset["age"]."<b>";
echo "<br>";
echo "בתאריך: </b>".$recordeset["date"]."<b>";
echo "<br>";
echo "עוד: </b>".$recordeset["comments"]."<b>";
echo "<br>";
echo "כניסה לאתר: </b> <a href='".$recordeset["enter"]."'><img src='enter.gif' style='border:0;'/></a></P>";
}
?>