I’m trying to create this form with three pull down menus. The first pull down menu has the heading “Seeking A” with options “Man” and “Woman”. The second and third pull down menus age ranges from 18 to 99 years. Everything works ok, except that the age pull down menus display the ages upwards instead of downwards as should be expected. What could possibly be the problem. I have the form displayed below.[php]
0203
04
05
06
07
Seeking A:
08
09
Man
10
Woman
11
Both
12
13
14
15
Age Range: <?php
16
print ‘’;
17
for ($age = 18; $age <= 99; $age++) {
18
print “\n<option value=”$age">$age";
19
}
20
print ‘’; ?>
21
22
and: <?php
23
print ‘’;
24
for ($age = 18; $age <= 99; $age++) {
25
print “\n<option value=”$age">$age";
26
}
27
print ‘’; ?>
28
29
[/php]