Skip to content

Commit 3fd213c

Browse files
committed
Fix invalid tag
1 parent c769c51 commit 3fd213c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

part3.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ <h2>Loop first, ask questions later</h2>
227227
<p>Read more about the while() and do-while() loops at <a href="http://www.php.net/manual/en/control-structures.while.php">http://www.php.net/manual/en/control-structures.while.php</a> and <a href="http://www.php.net/manual/en/control-structures.do.while.php">http://www.php.net/manual/en/control-structures.do.while.php</a>.</p>
228228

229229
<h2>Doing it by numbers</h2>
230-
<p>Both the while() and do-while() loops continue to iterate for as long as the specified conditional expression remains true. But what if you need to execute a certain set of statements a specific number of times - for example, printing a series of thirteen sequential numbers, or repeating a particular set of <td> cells five times? In such cases, clever programmers reach for the for() loop...</p>
230+
<p>Both the while() and do-while() loops continue to iterate for as long as the specified conditional expression remains true. But what if you need to execute a certain set of statements a specific number of times - for example, printing a series of thirteen sequential numbers, or repeating a particular set of &lt;td&gt; cells five times? In such cases, clever programmers reach for the for() loop...</p>
231231
<p>The for() loop typically looks like this:</p>
232232
{% highlight php %}<?php
233233
for (initial value of counter; condition; new value of counter) {

0 commit comments

Comments
 (0)