OK. this should be really simple, but it hasn't been. I am posting all this data to the same page (probably should use php_self). When I try to get the variables from the dropdown lists, it acts like there not there (all of the other input types in the form i can use)
<form action="lada.php" method="GET">
Price order:
<INPUT type="radio" name="price_order"
value="lowtohigh"> Price (low to high)
<INPUT type="radio" name="price_order"
value="hightolow" checked> Price (high to low)
</br>
</br>
Order By Category:
<INPUT type="radio" name="cat"
value="y" checked> YES
<INPUT type="radio" name="cat"
value="NULL"> NO
</br>
</br>
<select name="price_below" size="1">
<option value="NULL"> Price is Below...
<option value="10.00">$10.00
<option value="20.00">$20.00
<option value="30.00">$30.00
<option value="40.00">$40.00
<option value="50.00">$50.00
<option value="60.00">$60.00
<option value="70.00">$70.00
<option value="80.00">$80.00
<option value="90.00">$90.00
<option value="100.00">$100.00
<option value="150.00">$150.00
<option value="200.00">$200.00
<option value="300.00">$300.00
<option value="400.00">$400.00
<option value="500.00">$500.00
<option value="1000.00">$1000.00
<option value="2000.00">$2000.00
<option value="5000.00">$5000.00
<option value="10000.00">$10000.00
<option value="50000.00">$50000.00
<option value="1000000.00">$1000000.00
</select>
.....Other forms w/ same problem......
</br></br>
<input type="hidden" name="orderby" value="Set">
<input type="submit"> <input type="reset">
</form>
I can call $price_order and get the value.
When I call $price_below I get nothing.
I have tried using get & post.
Using get gives the url:
http://www.lada.php?price_order=hightolow&cat=y&price_below=80.00&price_low=NULL&price_high=NULL&orderby=Set
I can say:
<?php>
printf("This one works and prints out the value: %s", $cat);
printf("This one doesn't: %s", $price_below);
As you can see when I click on a price it sets price_below and passes it, but when I call it, it gives nothing.
Any ideas?