Thanks so much, I literally just started learning php two days ago, forgive my ignorance...
I used the following code and it wants to ignore the first option and defaults to the last one every time.
I've read through various tutorials and it seems like everything is correct...
<?php
$mid = 200;
$quantity = $_POST['quantity'];
if ($quantity > $mid){
header('location:big.html');
}else{
header('location:small.html');
}
?>
Is it in my form or in the php where I'm missing something?
here's the exact page online:
http://www.arcourtpay.org/test/order.htm
Thanks again