6) { if (mysql_num_rows($countryresult) > 15) { $sidead = 'multiple'; } else { $sidead = 'single'; } } } include_once('header.php'); echo "

".$countrycode[$_GET['country']]."

"; echo "

Ducky on holiday in ".$countrycode[$_GET['country']].", click on a photo to view it.

"; if ($countryresult) { //check to see if query has produced results $counter = 1; echo "\n"; while ($row = mysql_fetch_assoc($countryresult)){ //start loop to cycle items and display them if ($counter == 1) { echo " \n"; } echo " "; if ($counter == 3) { echo " "; $counter = 0; } $counter++; } echo "
\n"; $title = htmlspecialchars($row['description']." - ".$row['city'].", ".$countrycode[$row['country']]); echo " \n"; displayimage($row['picture'], $imagedir, 1, htmlspecialchars($row['city']).", ".$countrycode[$row['country']], '', 1, "class='gallerypic'", '', '', ''); echo "
".$row['city']."
\n"; } else { echo "No countries could be found"; } echo "

See what other countries our duck has been on holiday to in the duck travels gallery.

"; include_once('footer.php'); ?>