arrrg I'm lost. Here is the form code from my search.php page. Like I mentioned, the first List/Menu drop down box works great - but not the 2nd one. Should this be something dealing with the actual search page or the results page? Arrgh I'm lost...
<form id="form1" name="form1" method="post" action="inventory3.php">
<label></label>
<label></label>
<p>
<label></label>
</p>
<p>
<label>Type
<select name="TYPE" id="TYPE">
<option value="ARIEAL/SISSOR LIFT" <?php if (!(strcmp("ARIEAL/SISSOR LIFT", $row_Recordset1['TYPE']))) {echo "selected=\"selected\"";} ?>>ARIEAL/SISSOR LIFT</option>
<option value="CONSTRUCTION EQUIPMENT" <?php if (!(strcmp("CONSTRUCTION EQUIPMENT", $row_Recordset1['TYPE']))) {echo "selected=\"selected\"";} ?>>CONSTRUCTION EQUIPMENT</option>
<option value="FORKLIFT" <?php if (!(strcmp("FORKLIFT", $row_Recordset1['TYPE']))) {echo "selected=\"selected\"";} ?>>FORKLIFT</option>
<option value="JACKS/STACKERS" <?php if (!(strcmp("JACKS/STACKERS", $row_Recordset1['TYPE']))) {echo "selected=\"selected\"";} ?>>JACKS/STACKERS</option>
<option value="ORDER PICKER" <?php if (!(strcmp("ORDER PICKER", $row_Recordset1['TYPE']))) {echo "selected=\"selected\"";} ?>>ORDER PICKER</option>
<option value="PERSONNEL CART" <?php if (!(strcmp("PERSONNEL CART", $row_Recordset1['TYPE']))) {echo "selected=\"selected\"";} ?>>PERSONNEL CART</option>
<option value="REACH TRUCK" <?php if (!(strcmp("REACH TRUCK", $row_Recordset1['TYPE']))) {echo "selected=\"selected\"";} ?>>REACH TRUCK</option>
<option value="SIDE LOADER" <?php if (!(strcmp("SIDE LOADER", $row_Recordset1['TYPE']))) {echo "selected=\"selected\"";} ?>>SIDE LOADER</option>
<option value="STAND-UP" <?php if (!(strcmp("STAND-UP", $row_Recordset1['TYPE']))) {echo "selected=\"selected\"";} ?>>STAND-UP</option>
<option value="SWEEPER/SCRUBBER" <?php if (!(strcmp("SWEEPER/SCRUBBER", $row_Recordset1['TYPE']))) {echo "selected=\"selected\"";} ?>>SWEEPER/SCRUBBER</option>
<option value="TOW TRACTOR/TUGGER" <?php if (!(strcmp("TOW TRACTOR/TUGGER", $row_Recordset1['TYPE']))) {echo "selected=\"selected\"";} ?>>TOW TRACTOR/TUGGER</option>
<option value="TURRET" <?php if (!(strcmp("TURRET", $row_Recordset1['TYPE']))) {echo "selected=\"selected\"";} ?>>TURRET</option>
<option value="3 WHEEL FORKLIFT" <?php if (!(strcmp("3 WHEEL FORKLIFT", $row_Recordset1['TYPE']))) {echo "selected=\"selected\"";} ?>>3 WHEEL FORKLIFT</option>
<?php
do {
?><option value="<?php echo $row_Recordset1['TYPE']?>"<?php if (!(strcmp($row_Recordset1['TYPE'], $row_Recordset1['TYPE']))) {echo "selected=\"selected\"";} ?>><?php echo $row_Recordset1['TYPE']?></option>
<?php
} while ($row_Recordset1 = mysql_fetch_assoc($Recordset1));
$rows = mysql_num_rows($Recordset1);
if($rows > 0) {
mysql_data_seek($Recordset1, 0);
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
}
?>
</select>
</label>
</p>
<p>Make
<label>
<select name="Make" id="Make">
<option value="Hyster" <?php if (!(strcmp("Hyster", $row_Recordset1['MAKE']))) {echo "selected=\"selected\"";} ?>>Hyster</option>
<option value="Caterpillar" <?php if (!(strcmp("Caterpillar", $row_Recordset1['MAKE']))) {echo "selected=\"selected\"";} ?>>Caterpillar</option>
<option value="TCM" <?php if (!(strcmp("TCM", $row_Recordset1['MAKE']))) {echo "selected=\"selected\"";} ?>>TCM</option>
<option value="Nissan" <?php if (!(strcmp("Nissan", $row_Recordset1['MAKE']))) {echo "selected=\"selected\"";} ?>>Nissan</option>
<option value="Toyota" <?php if (!(strcmp("Toyota", $row_Recordset1['MAKE']))) {echo "selected=\"selected\"";} ?>>Toyota</option>
<option value="Yale" <?php if (!(strcmp("Yale", $row_Recordset1['MAKE']))) {echo "selected=\"selected\"";} ?>>Yale</option>
<?php
do {
?>
<option value="<?php echo $row_Recordset1['MAKE']?>"<?php if (!(strcmp($row_Recordset1['MAKE'], $row_Recordset1['MAKE']))) {echo "selected=\"selected\"";} ?>><?php echo $row_Recordset1['MAKE']?></option>
<?php
} while ($row_Recordset1 = mysql_fetch_assoc($Recordset1));
$rows = mysql_num_rows($Recordset1);
if($rows > 0) {
mysql_data_seek($Recordset1, 0);
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
}
?>
</select>
</label>
</p>
<p> </p>
<p>
<label></label><label>Search
<input type="submit" name="Search" id="Search" value="Submit" />
</label>
</p>
</form>