add checks boxes automatically

if i select 5 from dropdownlist then 5 check boxes should be display with 1,2,3,4,5 values

[php]

How many...
Select 2 3 4 5
Submit
<?php if ($_POST) { $i = 0;
   while ($i <= $_POST['how_many_potential_answers'])
       {

?>



<?php $i++; } //End While } ?>[/php]
Sponsor our Newsletter | Privacy Policy | Terms of Service