Hi
It's me again, one more question, what if I want list two fields , Id and Bloom_Name? I have tried 'id', 'Bloom_Name' but it doesn't work, can you please help.
Thanks JD
<?PHP
mysql_connect("localhost", "xxx_xxxx", "xxxx") or die(mysql_error());
mysql_select_db("xxxx_xxx") or die(mysql_error());
$sql = "SELECT * FROM `ihsreg` ORDER BY `Bloom_Name` DESC LIMIT 20";
$results = mysql_query($sql);
while(($row = mysql_fetch_assoc($results)) !== false){
echo $row['Bloom_Name']."<br>";
}
?>