Thanks for posting a reply... but im still stuck... im testing it with Region 6 (r6) as that is the only one poulated at the moment...
Tried the first option
<?
mysql_connect("localhost","XXXXX","XXXXX");
mysql_select_db("XXXXX") or die("Unable to select database");
$sql = mysql_query ("select * from gzvenues where gzvenues.region = r6");
$num = mysql_num_rows("$sql");
echo "<font size=2 color=FF0099 face=Arial, Helvetica, sans-serif>$num</font><p>";
?>
And im getting an error
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/www/XXXX/ukmap.php on line 83
line 83 being $num = mysql_num_rows("$sql");
Then tried option 2
<?
mysql_connect("localhost","XXXX","XXXXX");
mysql_select_db("XXXX") or die("Unable to select database");
$sql = mysql_query ("select COUNT(*) from gzvenues where gzvenues.region = 'r6'");
echo "<font size=2 color=FF0099 face=Arial, Helvetica, sans-serif>$sql</font><p>";
?>
And this bought up Resource id #6 what does that mean??
Im sorry to say I really dont understand the 3rd option from Toxic Brian, sorry Brian its just to much for my small brain.
So if anyone can help some more, I would be forver grateful.
Thanks
Lee