Minor formatting.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@106579 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Sara Golemon 2002-12-02 18:08:28 +00:00
parent 09716b3e03
commit 75c40cecfe

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.52 $ -->
<!-- $Revision: 1.53 $ -->
<chapter id="features.file-upload">
<title>Handling file uploads</title>
@ -373,13 +373,13 @@ move_uploaded_file($_FILES['userfile']['tmp_name'], "/place/to/put/uploaded/file
<sect1 id="features.file-upload.put-method">
<title>PUT method support</title>
<simpara>
PUT method support has changed between PHP3 and PHP4.
In PHP4, one should use the standard input stream to read
PUT method support has changed between PHP 3 and PHP 4.
In PHP 4, one should use the standard input stream to read
the contents of an HTTP PUT.
</simpara>
<para>
<example>
<title>Saving HTTP PUT files with PHP4</title>
<title>Saving HTTP PUT files with PHP 4</title>
<programlisting role="php">
<![CDATA[
<?php
@ -404,7 +404,7 @@ fclose($putdata);
</para>
<note>
<para>
All documentation below applies to PHP3 only.
All documentation below applies to PHP 3 only.
</para>
</note>
<para>