I thought this would work, but am getting error: Unknown column '*' in 'where clause'
$result = mysql_query("SELECT * FROM guns WHERE cond = '$age' AND manu = $des_manu",$db) or die(mysql_error());
guns
cond
manu
$des_manu
$result = mysql_query("SELECT * FROM guns WHERE cond = '$age' AND manu = '$des_manu'",$db) or die(mysql_error());
Try to copy this into your code.
I think it has to do with the ` in the table and field names, just a guess,
regards Thomas A.
thanks worked great, the weird thing is it worked fine with the ``s in there before I added the second condition. anyway thanks