Build errors corrected

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@88786 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Gabor Hojtsy 2002-07-16 13:11:09 +00:00
parent ea9e07092f
commit c3cfe1d19a

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<chapter id="tutorial">
<title>A simple tutorial</title>
@ -8,7 +8,7 @@
tutorial. This text only deals with dinamic webpage creation with
PHP, though PHP is not only capable of creating webpages. See
the section titled <link linkend="intro-whatcando">What can PHP
do</lihnk> for more information.
do</link> for more information.
</para>
<para>
PHP-enabled web pages are treated just like regular HTML pages and
@ -137,7 +137,7 @@ if (strstr($_SERVER["HTTP_USER_AGENT"], "MSIE")) {
</informalexample>
<para>
Here we introduce a couple of new concepts. We have an
<link linkend="control-structures.if">if</if> statement.
<link linkend="control-structures.if">if</link> statement.
If you are familiar with the basic syntax used by the C
language this should look logical to you. If you don't know enough
C or some other language where the syntax used above is used, you
@ -233,7 +233,7 @@ You are <?php echo $_POST["age"]; ?> years old.
on <link linkend="language.variables.predefined">predefined
variables</link> for more information.
</para>
<note>
</note>
</para>
</sect1>