-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforloop.php
50 lines (48 loc) · 855 Bytes
/
forloop.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<hr>
<h3>For Loop</h3>
<hr>
<pre>
for ($i = 0; $i < 10; $i++) {
echo $i."<br>";
}
</pre>
<hr>
<h3>Results</h3>
<hr>
<?php
for ($i = 0; $i < 10; $i++) {
echo "$i <br>";
}
?>
<hr>
<h3>For Loop</h3>
<hr>
<pre>
$months = array('January','February','March','April','May','June','July','August','September','October','November','December');
for($i = 0; $i < count($months); $i++) {
echo $months[$i]."<br>";
}
</pre>
<hr>
<h3>Results</h3>
<hr>
<?php
$months = array('January','February','March','April','May','June','July','August','September','October','November','December');
for($i = 0; $i < count($months); $i++) {
echo $months[$i]."<br>";
}
?>
<br>
<pre>
foreach($months as $month) {
echo $month."<br>";
}
</pre>
<hr>
<h3>Results</h3>
<hr>
<?php
foreach($months as $month) {
echo $month."<br>";
}
?>