Fix markup (wrap that simpara in a sect1 block)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@246544 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Hannes Magnusson 2007-11-20 23:05:13 +00:00
parent 93f9a5d959
commit 18c0c7cdb3

View file

@ -1,18 +1,21 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.154 $ -->
<!-- $Revision: 1.155 $ -->
<chapter xml:id="language.control-structures" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Control Structures</title>
<simpara>
Any PHP script is built out of a series of statements. A statement
can be an assignment, a function call, a loop, a conditional
statement or even a statement that does nothing (an empty
statement). Statements usually end with a semicolon. In addition,
statements can be grouped into a statement-group by encapsulating a
group of statements with curly braces. A statement-group is a
statement by itself as well. The various statement types are
described in this chapter.
</simpara>
<sect1 xml:id="control-structures.intro">
<title>Introduction</title>
<simpara>
Any PHP script is built out of a series of statements. A statement
can be an assignment, a function call, a loop, a conditional
statement or even a statement that does nothing (an empty
statement). Statements usually end with a semicolon. In addition,
statements can be grouped into a statement-group by encapsulating a
group of statements with curly braces. A statement-group is a
statement by itself as well. The various statement types are
described in this chapter.
</simpara>
</sect1>
<sect1 xml:id="control-structures.if">
<title><literal>if</literal></title>