Fixed typos

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@27711 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Stefan Livieratos 2000-07-05 10:24:17 +00:00
parent 5e47744128
commit 1ddb2ebc00
4 changed files with 7 additions and 7 deletions

View file

@ -475,11 +475,11 @@ include_path=".;c:\www\phplib"
</term>
<listitem>
<para>
Tells whether the short form (<userinput>&lt? ?></userinput>of
Tells whether the short form (<userinput>&lt;? ?&gt;</userinput>of
PHP's open tag should be allowed. If you want to use PHP in
combination with XML, you have to disable this option. If
disabled, you must use the long form of the open tag
(<userinput>&lt;?php ?></userinput>).</para>
(<userinput>&lt;?php ?&gt;</userinput>).</para>
</listitem>
</varlistentry>

View file

@ -819,7 +819,7 @@
This install guide will help you install and configure PHP on your
Windows 9x/NT webservers. This guide was compiled by
&link.bob;. The latest revision can be found at <ulink
url="&url.win32install">&url.win32install</ulink>.
url="&url.win32install;">&url.win32install;</ulink>.
</simpara>
<para>
This guide provides installation support for:
@ -897,7 +897,7 @@
to load these modules. Some modules require you to have
additional libraries installed on your system for the
module to work correctly. The PHP <ulink
url="&url.php.faq">FAQ</ulink> has more information on
url="&url.php.faq;">FAQ</ulink> has more information on
where to get supporting libraries. You can also load a
module dynamically in your script using:
<command>dl("php_*.dll");</command>

View file

@ -78,7 +78,7 @@
exit;
}
if(!isset($PHP_AUTH_USER) || ($SeenBefore == 1 && !strcmp($OldAuth, $PHP_AUTH_USER)) ) {
if(!isset($PHP_AUTH_USER) || ($SeenBefore == 1 &amp;&amp; !strcmp($OldAuth, $PHP_AUTH_USER)) ) {
authenticate();
}
else {

View file

@ -25,7 +25,7 @@
<example>
<title>Getting the title of a remote page</title>
<programlisting>
&lt?php
&lt;?php
$file = fopen("http://www.php.net/", "r");
if (!$file) {
echo "&lt;p>Unable to open remote file.\n";
@ -57,7 +57,7 @@
<example>
<title>Storing data on a remote server</title>
<programlisting>
&lt?php
&lt;?php
$file = fopen("ftp://ftp.php.net/incoming/outputfile", "w");
if (!$file) {
echo "&lt;p>Unable to open remote file for writing.\n";