Thanks guys ... but I'm still not quite there yet! ... my apologies in advance for what I'm pasting below :-)
This is what I've put together and of course it doesn't work ... probably full of stupid errors!
<?
mysql_connect ("mysql.websitename.co.uk", "username", "password");
mysql_select_db ("dbname");
$sql=("SELECT DISTINCT artists, uniqueid FROM tablename, ORDER BY artists");
$r="mysql_connect"; //use your database functions
if(!$r)die ("Query failed: $sql");
//$sql=("SELECT DISTINCT artists, uniqueid FROM northern, ORDER BY artists");
echo 'Choose Artist: <select name="artistdrop">';
while (mysql_fetch_row($r)); //again use your db functions
{
$artist=mysql_result($r,'artists');
$uid=mysql_result($r,'uniqueid');
echo '<option value="'.$uid.'">'.$artists.'</option>';
}
echo '</select>';
?>