Sorry!
OK, this is the code that selects the required data from my database
mysql_select_db($database_connCMS, $connCMS);
$query_rsCloud = "SELECT tag FROM tagcloud";
$rsCloud = mysql_query($query_rsCloud, $connCMS) or die(mysql_error());
$row_rsCloud = mysql_fetch_assoc($rsCloud);
And then this loop happily spits out the results into the body of the page
<?php do { ?>
<div><a href="<?php echo $row_rsCloud['url']; ?>"><?php echo $row_rsCloud['tag']; ?></a></div>
<?php } while ($row_rsCloud = mysql_fetch_assoc($rsCloud)); ?>