View difference between Paste ID: Yx5WzH5y and 7vYDq0Ah
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-
}
9+
}
10
11
# do-Methode:
12
$i = 1;
13
do {
14
	$i++;
15
	echo '<option>....';
16
} while ($i <= $items);