'Make drop down lists according to the limit given by user for it

Here are my both pages screenshot.

enter image description here

I want to make a drop down list in my create team page according to the given team limit in teacher home page. My drop down list is just a sample for explaining this.



Solution 1:[1]

I think that you can use number which you write to team limit as input for "while loop" and reapeat list items until cycle finish.

Team limit will be posted via form from home page to team page as team_limit.

while($x <= team_limit) {
  echo "<ul>";
  echo "<li>example<li>";
  echo "</ul>";
  $x++;
}

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 user2623507