> for ($i=0; $i<=12; $i++)
> {
>     echo "<select name='$i'>";
>     echo "<option values....>";
> }

the <select... > tag must stay out of the for loop. the syntax for
<select...> is

<select ...>
  <option...></option>
  <option...></option>
  <option...></option>
  <option...></option>
  ....
</select>

bye
Mattia



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to