「具体的に」から個別の名前を選択しようとしていますが、col Type =特定の値の場合のみです。
たとえば、私は
rowID    Type   Specifically
1        cat    Ocicat
2        cat    Bombay
3        cat    Bombay
4        cat    Bengal
5        cat    Savannah
6        dog    Collie
7        dog    Keeshond
8        dog    Pug
9        dog    Keeshond
10       dog    Pug
11       dog    Doberman
12       Horse  n/a
そして、私は次のようなものを読みたいです
type=cat and specific=Bengal
type=cat and specific=Bombay
type=cat and specific=Ocicat
type=cat and specific=Savannah
私は現在これを持っていますが、「未定義のインデックス:タイプ」が表示されます
$Result = mysql_query("select distinct Specifically from pet_table WHERE Type='cat' ORDER BY Specifically asc ");
while($row = mysql_fetch_array($Result)) 
{
PRINT("type=".$row['Type']." and specific=".$row['Specifically']."<BR>");
}
また、タイプが猫でも犬でも馬でもないようなことをしたいと思います... ect
ありがとう