View difference between Paste ID: 7vYDq0Ah and z00UpEjS
SHOW: | | - or go back to the newest paste.
1
# for-Methode:
2
for($i = 1; $i <= $items; $i++) echo '<option>....';
3
4
# while-Methode:
5
$i = 1;
6
while($i <= $items) {
7
	$i++;
8
	echo '<option>....';
9
}