Typos (nice eye Goba)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@88516 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Philip Olson 2002-07-12 22:34:05 +00:00
parent 6adede7961
commit 35baeb890f

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.46 $ -->
<!-- $Revision: 1.47 $ -->
<chapter id="features.file-upload">
<title>Handling file uploads</title>
@ -234,7 +234,7 @@ move_uploaded_file($_FILES['userfile']['tmp_name'], "/place/to/put/uploaded/file
<para>
<variablelist>
<varlistentry>
<term><varname>UPLOAD_ERROR_OK</varname></term>
<term><varname>UPLOAD_ERR_OK</varname></term>
<listitem>
<para>
Value: 0; There is no error, the file uploaded with success.
@ -242,7 +242,7 @@ move_uploaded_file($_FILES['userfile']['tmp_name'], "/place/to/put/uploaded/file
</listitem>
</varlistentry>
<varlistentry>
<term><varname>UPLOAD_ERROR_INI_SIZE</varname></term>
<term><varname>UPLOAD_ERR_INI_SIZE</varname></term>
<listitem>
<para>
Value: 1; The uploaded file exceeds the
@ -252,7 +252,7 @@ move_uploaded_file($_FILES['userfile']['tmp_name'], "/place/to/put/uploaded/file
</listitem>
</varlistentry>
<varlistentry>
<term><varname>UPLOAD_ERROR_FORM_SIZE</varname></term>
<term><varname>UPLOAD_ERR_FORM_SIZE</varname></term>
<listitem>
<para>
Value: 2; The uploaded file exceeds the <emphasis>MAX_FILE_SIZE</emphasis>
@ -261,7 +261,7 @@ move_uploaded_file($_FILES['userfile']['tmp_name'], "/place/to/put/uploaded/file
</listitem>
</varlistentry>
<varlistentry>
<term><varname>UPLOAD_ERROR_PARTIAL</varname></term>
<term><varname>UPLOAD_ERR_PARTIAL</varname></term>
<listitem>
<para>
Value: 3; The uploaded file was only partially uploaded.
@ -269,7 +269,7 @@ move_uploaded_file($_FILES['userfile']['tmp_name'], "/place/to/put/uploaded/file
</listitem>
</varlistentry>
<varlistentry>
<term><varname>UPLOAD_ERROR_NO_FILE</varname></term>
<term><varname>UPLOAD_ERR_NO_FILE</varname></term>
<listitem>
<para>
Value: 4; No file was uploaded.