form name="breed" method="post">
Search For Cat Breed
>
";
print "
PET ID | PET NAME | SPECIES | BREED | GENDER | AGE | DESCRIPTION | FIXED | ";
print " |
";
if( $numRows == 0 ) {
print "No results found!";
}
while( $qRow = MYSQL_FETCH_ARRAY( $qResult ) )
{
print "$qRow[petID] | $qRow[name] | $qRow[species] | $qRow[breed] | $qRow[gender] | $qRow[age] | $qRow[description] | $qRow[fixed] | ";
print " | [PICTURE] |
";
}
}