okay, sorry i missed that.
i tried, but it did not work.
got this error->
Parse error: parse error, expecting T_STRING' orT_VARIABLE' or `T_NUM_STRING' in /web/eww/remediation/dbase_pract/multi_query.php on line 33
the code::::::
<body>
<?php
mysql_connect (localhost, remeed, typethis);
mysql_select_db (remediation);
if ($apn == "")
{$apn = '%';}
if ($streetnum == "")
{$streetnum = '%';}
if ($street == "")
{$street = '%';}
if ($lastname == "")
{$lastname = '%';}
$result = mysql_query ("SELECT * FROM rembilling
WHERE apn LIKE '$apn%'
AND streetnum LIKE '$streetnum%'
AND street LIKE '$street%'
AND lastname LIKE '$lastname%'
");
if ($row = mysql_fetch_array($result)) {
do {
print '<font face="Arial">'."$row['apn']".'</font>';
print $row["annualized"];
print (" ");
print $row["fee"];
print (" ");
print $row["streetnum"];
print (" ");
print $row["street"];
print (" ");
print $row["lastname"];
print ("<p>");
} while($row = mysql_fetch_array($result));
} else {print "Sorry, no records were found!";}
?>
</body>
thanks for your time.