If I wish to return the results from a table where colour = blue I would do
$results = mysql_query("SELECT * FROM mytable WHERE colour = 'blue'",$link_id);
$query_data = mysql_fetch_row($results)
How then could I return result from where colour = blue AND letter = A AND number = 2?
Thanks ... Fizz