Thank you. Another question... Why is this still returning the following error?
Warning: Supplied argument is not a valid MySQL result resource in /usr/local/etc/httpd/htdocs/new_stuff/new_site_html/again/return_row2.php on line 13
script=
<body>
<?
$db = mysql_connect("161.58.151.98","aidema","hexagenia");
mysql_select_db("journeys",$db);
if ($region)
{
$result = mysql_query("SELECT * FROM trips WHERE region=$region",$db);
$myrow = mysql_fetch_row($result);
printf("<tr><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td></tr>\n", $myrow[1], $myrow[2], $myrow[3], $myrow[4], $myrow[5], $myrow[6], $myrow[7], $myrow[8], $myrow[9], $myrow[10]);
}
echo "</table>\n";
?>
</body>