I changed my query from:
mysql_query("SELECT FirstName,LastName,StreetAddress,City,State,Zip,Phone,Fax,Email,Website,PractitionerTyp,Specialty FROM Practitioners");
to:
mysql_query("SELECT FirstName,LastName,StreetAddress,City,State,Zip,Phone,Fax,Email,Website,PractitionerTyp,Specialty FROM Practitioners WHERE State='$State'");
Still get the same error - Is there a chance that I'm not passing the variable from the previous page correctly?
I use that State select list (name="State") which corresponds to the field I'm searching in the database.
The error leads me to believe that my query statement is wrong - any more suggestions - by the way thanks for all your responses thus far