'Make drop down lists according to the limit given by user for it
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 |

