Fixed incorrect example

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@119016 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Victor Boivie 2003-03-05 07:02:43 +00:00
parent b5a9e8d809
commit 4edc895c90

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.68 $ -->
<!-- $Revision: 1.69 $ -->
<chapter id="control-structures">
<title>Control Structures</title>
@ -734,11 +734,9 @@ while ($i++ < 5) {
<![CDATA[
if ($i == 0) {
print "i equals 0";
}
if ($i == 1) {
} elseif ($i == 1) {
print "i equals 1";
}
if ($i == 2) {
} elseif ($i == 2) {
print "i equals 2";
}