Chapter 38. Handling file uploads

Table of Contents
POST method uploads
Error Messages Explained
Common Pitfalls
Uploading multiple files
PUT method support

POST method uploads

This feature lets people upload both text and binary files. With PHP's authentication and file manipulation functions, you have full control over who is allowed to upload and what is to be done with the file once it has been uploaded.

PHP is capable of receiving file uploads from any RFC-1867 compliant browser (which includes Netscape Navigator 3 or later, Microsoft Internet Explorer 3 with a patch from Microsoft, or later without a patch).

Related Configurations Note: See also the file_uploads, upload_max_filesize, upload_tmp_dir, post_max_size and max_input_time directives in php.ini

PHP also supports PUT-method file uploads as used by Netscape Composer and W3C's Amaya clients. See the PUT Method Support for more details.

Example 38-1. File Upload Form

A file upload screen can be built by creating a special form which looks something like this:

<!-- The data encoding type, enctype, MUST be specified as below -->
<form enctype="multipart/form-data" action="__URL__" method="POST">
    <!-- MAX_FILE_SIZE must precede the file input field -->
    <input type="hidden" name="MAX_FILE_SIZE" value="30000" />
    <!-- Name of input element determines name in $_FILES array -->
    Send this file: <input name="userfile" type="file" />
    <input type="submit" value="Send File" />
</form>

The __URL__ in the above example should be replaced, and point to a PHP file.

The MAX_FILE_SIZE hidden field (measured in bytes) must precede the file input field, and its value is the maximum filesize accepted. This is an advisory to the browser, PHP also checks it. Fooling this setting on the browser side is quite easy, so never rely on files with a greater size being blocked by this feature. The PHP settings for maximum-size, however, cannot be fooled. This form element should always be used as it saves users the trouble of waiting for a big file being transferred only to find that it was too big and the transfer failed.

Note: Be sure your file upload form has attribute enctype="multipart/form-data" otherwise the file upload will not work.

The global $_FILES exists as of PHP 4.1.0 (Use $HTTP_POST_FILES instead if using an earlier version). These arrays will contain all the uploaded file information.

The contents of $_FILES from the example form is as follows. Note that this assumes the use of the file upload name userfile, as used in the example script above. This can be any name.

$_FILES['userfile']['name']

The original name of the file on the client machine.

$_FILES['userfile']['type']

The mime type of the file, if the browser provided this information. An example would be "image/gif".

$_FILES['userfile']['size']

The size, in bytes, of the uploaded file.

$_FILES['userfile']['tmp_name']

The temporary filename of the file in which the uploaded file was stored on the server.

$_FILES['userfile']['error']

The error code associated with this file upload. This element was added in PHP 4.2.0

Files will, by default be stored in the server's default temporary directory, unless another location has been given with the upload_tmp_dir directive in php.ini. The server's default directory can be changed by setting the environment variable TMPDIR in the environment in which PHP runs. Setting it using putenv() from within a PHP script will not work. This environment variable can also be used to make sure that other operations are working on uploaded files, as well.

Example 38-2. Validating file uploads

See also the function entries for is_uploaded_file() and move_uploaded_file() for further information. The following example will process the file upload that came from a form.

<?php
// In PHP versions earlier than 4.1.0, $HTTP_POST_FILES should be used instead
// of $_FILES.

$uploaddir = '/var/www/uploads/';
$uploadfile = $uploaddir . basename($_FILES['userfile']['name']);

echo
'<pre>';
if (
move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
    echo
"File is valid, and was successfully uploaded.\n";
} else {
    echo
"Possible file upload attack!\n";
}

echo
'Here is some more debugging info:';
print_r($_FILES);

print
"</pre>";

?>

The PHP script which receives the uploaded file should implement whatever logic is necessary for determining what should be done with the uploaded file. You can, for example, use the $_FILES['userfile']['size'] variable to throw away any files that are either too small or too big. You could use the $_FILES['userfile']['type'] variable to throw away any files that didn't match a certain type criteria. As of PHP 4.2.0, you could use $_FILES['userfile']['error'] and plan your logic according to the error codes. Whatever the logic, you should either delete the file from the temporary directory or move it elsewhere.

If no file is selected for upload in your form, PHP will return $_FILES['userfile']['size'] as 0, and $_FILES['userfile']['tmp_name'] as none.

The file will be deleted from the temporary directory at the end of the request if it has not been moved away or renamed.

Example 38-3. Uploading array of files

PHP supports HTML array feature even with files.

<form action="" method="post" enctype="multipart/form-data">
<p>Pictures:
<input type="file" name="pictures[]" />
<input type="file" name="pictures[]" />
<input type="file" name="pictures[]" />
<input type="submit" value="Send" />
</p>
</form>
<?php
foreach ($_FILES["pictures"]["error"] as $key => $error) {
    if (
$error == UPLOAD_ERR_OK) {
        
$tmp_name = $_FILES["pictures"]["tmp_name"][$key];
        
$name = $_FILES["pictures"]["name"][$key];
        
move_uploaded_file($tmp_name, "data/$name");
    }
}
?>



Broken Soft   Americana Host

PHP Manual PHP Documentation PHP Tutorials PHP Articles PHP Programming PHP Functions Arrays MySQL articles directory
php php manual manuals function php functions php online documentation php online manual Apache MySQL PostgreSQL Zend Technologies phpmyadmin Web Programming php tutorial php date php tutorials Programming php resources php lesson php resource php lessons free php lessons free php tutorials Linux php unix php free php hosting Web Programming using PHP/MySQL PHP Training Introduction to PHP Programming Course - html wysiwyg editor Phoenix PHP Developers ActionScript / PHP php hotscripts php web hot scripts MySQL com Dreamweaver MX Basic PHP Course PHP Programming Course php array php arrays php redirect php manual download php manual pdf php manual array Classes and Objects (PHP 4) Operators Expressions Constants Variables Database Security CGI binary php manual install Databases php Database phpbb php sql forumes php articles directory Broken Soft >> Best Free Arabic Ebooks - Free Ebooks Download- Free English Ebooks - Free Domain Names Ebooks - Free Web Hosting ebooks - Free Resellers Hosting Ebooks - Free Servers Hosting Ebooks- Free Google Adsense Ebooks - Free SEO Ebooks - Free Search Engines Ebooks - Free WebMasters Ebooks - Free Page Rank Ebooks - Free PR Ebooks - Free Web Design Ebooks - Free Web Development Ebooks - Free Flash Mx Ebooks - Free Adobe Photoshop Ebooks - Free Cinema4d(cinema4d ebooks) ebooks - Free 3dmax Ebooks - Free Autocad Ebooks - Free Switch Max Ebooks - Free Programming Ebooks - Free Microsoft Visual Basic Ebooks - Free Dream Waver Ebooks - Free Microsoft Front Page Ebooks - Free Microsoft Visual Basic.net (vb.net) Ebooks - Free Csharp Ebooks (Free c# Ebooks) - Free c Ebooks - Free C+(Cplus) Ebooks - Free C++ (C plus plus) Ebooks - Free Java Ebooks - Free Assembly Ebooks - Free Delphi Ebooks - Free Assemply Ebooks - Free Delphi Ebooks - Free Xml Ebooks - Free Web Programming Ebooks - Free PHP Ebooks - Free Java Script Ebooks - Free Javascripe Ebooks - Free HTML Ebooks - Free ASP Ebooks - Free Microsoft ASP.NET Ebooks - Free Perl Ebooks - Free CGi Ebooks - Free API Ebooks - Free Cpanel Ebooks - Free Digi Chat Ebooks - Free TCP/IP Ebooks - Free PDF Ebooks - Free EXE Ebooks - Free CHM Ebooks - Free BiBLE Ebooks - The Google Adsense Empire Handbook - Free Amazon Ebooks - Free Google SEO Ebooks - Free Mesothelioma Ebooks - Free Lawyers Ebooks - Free Cars Care Ebooks - Free Computers Ebooks - Free LabTops Ebooks - Free Microsoft Windows Ebooks - Free linux Ebooks - Free Unix Ebooks - Free Database Ebooks - Free Microsoft ACCESS Ebooks - Free microsoft SQL Server 2000 Ebooks - Free Oracle Ebooks - Free MySql Ebooks - Free Networks Ebooks - Free Mesothelioma Treatment Ebooks - All These Free Ebooks In Broken Soft For Free Ebooks Best Free Ebooks With Broket Free Ebooks Free Free Free Free Ebooks In Broken Soft Free Ebooks php,php manual,manuals,function,php functions,php online documentation,php online manual,Apache,MySQL,PostgreSQL,sql, Zend Technologies ,zend,phpmyadmin,Web Programming,php tutorial,php date,php tutorials,Programming,php resources,php lesson,php resource,php lessons, free php lessons,free php tutorials,Linux,php,unix,php,free php hosting,Web Programming using PHP/MySQL,PHP Training,Introduction to PHP,Programming Course,html,wysiwyg editor,Phoenix,PHP Developers,ActionScript / PHP,php hotscripts,php web hot scripts,MySQL com,Dreamweaver MX,Basic PHP Course,PHP Programming Course,php array,php arrays, php redirect,php manual download,php manual pdf,php manual array,Classes and Objects (PHP 4),Operators,Expressions,Constants,Variables,Database Security,CGI ,binary,php manual install,Databases,php Database,phpbb,php forumes,php articles directory

Qwesz Article Directory Qwesz Directory
شبكة هجوم و منتديات هجوم منتديات تحميل برامج و تحميل برامج جوال و برامج تعريف قطع الاجهزة و برامج ماسنجر و خطوط و ايضا منتديات لعب العاب و العاب فلاش و العاب بنات للبنات فقط و العاب باربي و العاب جوال و العاب مكياج ميك اب و تحميل صور و صور سيارات و افلام و اغانى و صيانة جوالات و بوكيت بي سي و ثيمات و بلوتوث و مسجات جوال و دردشة و شات - العاب دليل بروكين سوفت دروس الفوتوشوب ( دروس قلعة الفوتوشوب ) ( دروس فوتوشوب ) ( دروس فوتوشوب للمبتدئين ) ( دروس فوتوشوب للمتقدمين ) ( فلاتر فوتوشوب ) ( فرش الفوتوشوب ) ( تدرجات الفوتوشوب ) ( أشكال الفوتوشوب ) ( مواقع ومنتديات الفوتوشوب ) ( أيقونات و صور PNG ) ( دروس ايميج ريدى ) برامج فى برامج ( مواقع و منتديات البرامج ) ( البرامج الأساسية ) ( برامج النظام و الخدمات ) ( برامج مكافحة ملفات التجسس و برامج جدار ناري ) ( برامج منع النوافذ الإعلانية ) ( برامج الحماية و مكافحة الفايروسات ) ( برامج تعريفات الأجهزة ) ( برامج الماسنجر و المحادثة ) ( برامج الكمبيوتر ) ( برامج الانترنت ) ( برامج تسريع الانترنت ) ( برامج تحديث أنظمة ميكروسوفت ) ( برامج نوكيا الجيل الثاني و الثالث ) ( برامج الجوال والاتصالات ) ( برامج خدمية ومكتبية ) ( برامج تحميل الملفات ) ( برامج الفيديو ) ( برامج الصوتيات و المرئيات ) ( برامج الصوت ) ( برامج البانرات و الايقونات ) ( برامج التصميم و الصور ) ( برامج نسخ الاسطوانات ) ( برامج عربية و إسلامية ) ( برامج مدرسية ) ( برامج تصميم المواقع ) ( برامج أخرى ) ( البرامج التعليمية ) ( المتصفحات و برامج البحث ) ( برامج البريد الإلكتروني ) ( برامج مشاركة الملفات ) ( برامج الترجمة ) دروس التصميم والجرافيكس ( دروس الفلاش ) ( مواقع و منتديات تعليم الفلاش ) ( مواقع ومنتديات السينما فور دى Cinema 4D ) ( مواقع و منتديات تعليم الثرى دى ماكس 3D Max ) ( دروس السويش ماكس ) تطوير المواقع ( دروس تطوير المواقع ) ( برامج تطوير المواقع ) ( قوالب مواقع جاهزة Templates ) ( مواقع و منتديات تطوير المواقع ) ( دروس Cpanel ) ( شعارات جاهزة PSD ) تطوير المنتديات ( تطوير منتديات vBulletin ) ( ستايلات منتديات vBulletin ) ( هاكات منتديات vBulletin ) ( مواقع دعم منتديات vBulletin ) ( تطوير منتديات PHPBB ) ( ستايلات منتديات PHPBB ) ( هاكات منتديات PHPBB ) ( مواقع دعم منتديات PHPBB ) ( تطوير منتديات IPB ) ( ستايلات منتديات IPB ) ( هاكات منتديات IPB ) ( مواقع دعم منتديات IPB ) ( تطوير منتديات SMF ) ( ستايلات منتديات SMF ) ( هاكات منتديات SMF ) ( مواقع دعم منتديات SMF ) دروس البرمجه ( دروس فيجوال بيسك ) دروس اوفيس ( دروس اكسس ) ( دروس وورد ) ( دروس بوربوينت ) ( دروس اكسل ) ( دروس الفرونت بيج ) خطوط ( خطوط عربية ) ( خطوط انجليزية دروس الفوتوشوب ( دروس قلعة الفوتوشوب ) ( دروس فوتوشوب ) ( دروس فوتوشوب للمبتدئين ) ( دروس فوتوشوب للمتقدمين ) ( فلاتر فوتوشوب ) ( فرش الفوتوشوب ) ( تدرجات الفوتوشوب ) ( أشكال الفوتوشوب ) ( مواقع ومنتديات الفوتوشوب ) ( أيقونات و صور PNG ) ( دروس ايميج ريدى ) برامج فى برامج ( مواقع و منتديات البرامج ) ( البرامج الأساسية ) ( برامج النظام و الخدمات ) ( برامج مكافحة ملفات التجسس و برامج جدار ناري ) ( برامج منع النوافذ الإعلانية ) ( برامج الحماية و مكافحة الفايروسات ) ( برامج تعريفات الأجهزة ) ( برامج الماسنجر و المحادثة ) ( برامج الكمبيوتر ) ( برامج الانترنت ) ( برامج تسريع الانترنت ) ( برامج تحديث أنظمة ميكروسوفت ) ( برامج نوكيا الجيل الثاني و الثالث ) ( برامج الجوال والاتصالات ) ( برامج خدمية ومكتبية ) ( برامج تحميل الملفات ) ( برامج الفيديو ) ( برامج الصوتيات و المرئيات ) ( برامج الصوت ) ( برامج البانرات و الايقونات ) ( برامج التصميم و الصور ) ( برامج نسخ الاسطوانات ) ( برامج عربية و إسلامية ) ( برامج مدرسية ) ( برامج تصميم المواقع ) ( برامج أخرى ) ( البرامج التعليمية ) ( المتصفحات و برامج البحث ) ( برامج البريد الإلكتروني ) ( برامج مشاركة الملفات ) ( برامج الترجمة ) دروس التصميم والجرافيكس ( دروس الفلاش ) ( مواقع و منتديات تعليم الفلاش ) ( مواقع ومنتديات السينما فور دى Cinema 4D ) ( مواقع و منتديات تعليم الثرى دى ماكس 3D Max ) ( دروس السويش ماكس ) تطوير المواقع ( دروس تطوير المواقع ) ( برامج تطوير المواقع ) ( قوالب مواقع جاهزة Templates ) ( مواقع و منتديات تطوير المواقع ) ( دروس Cpanel ) ( شعارات جاهزة PSD ) تطوير المنتديات ( تطوير منتديات vBulletin ) ( ستايلات منتديات vBulletin ) ( هاكات منتديات vBulletin ) ( مواقع دعم منتديات vBulletin ) ( تطوير منتديات PHPBB ) ( ستايلات منتديات PHPBB ) ( هاكات منتديات PHPBB ) ( مواقع دعم منتديات PHPBB ) ( تطوير منتديات IPB ) ( ستايلات منتديات IPB ) ( هاكات منتديات IPB ) ( مواقع دعم منتديات IPB ) ( تطوير منتديات SMF ) ( ستايلات منتديات SMF ) ( هاكات منتديات SMF ) ( مواقع دعم منتديات SMF ) دروس البرمجه ( دروس فيجوال بيسك ) دروس اوفيس ( دروس اكسس ) ( دروس وورد ) ( دروس بوربوينت ) ( دروس اكسل ) ( دروس الفرونت بيج ) خطوط ( خطوط عربية ) ( خطوط انجليزية جوالات فى جوالات فى جوالات ( جوال فى جوال فى جوال ) ( جوالات نوكيا جوالات Nokia ) ( جوالات سونى اريكسون جوال Sony Ericsson ) ( جوالات Siemens جوال سيمنز ) ( جوالات Samsung جوال و جوالات سامسونج ) ( جوالات LG جوال و جوالات ال جى ) ( جوالات Symbian OS Series 60 ) ( جوالات Symbian OS Series 80 Communicators ) ( جوالات Symbian OS Series 90 Media Phones ) ( جوالات Symbian OS UIQ ) ( جوالات Pocket PC & Palm جوالات البالم والبوكيت بى سى ) ( الجوالات الأخرى جوالات اخرى ) العاب فى العاب فى العاب ( العاب فلاش فى العاب فلاش ) ( العاب جديدة فى العاب جديدة ) ( العاب بنات فى العاب بنات ) ( العاب باربي فى العاب باربى ) ( العاب تلبيس فى العاب تلبيس ) ( العاب اطفال فى العاب اطفال ) ( العاب سوبر ماريو فى العاب سوبر ماريو ) ( العاب طبخ فى العاب طبخ ) ( العاب تلوين فى العاب تلوين ) ( العاب سونيك فى العاب سونيك ) ( العاب اكشن قتالية فى العاب اكشن قتال ) ( العاب توم وجيري فى العاب توم وجيري ) ( العاب ميك اب فى العاب ميك اب Makeup ) ( العاب فلة و ترتيب ) ( العاب تسديد و نيشان رائعة ) ( العاب الذاكرة ) ( العاب الورق رائعة ) ( العاب السباقات رائعة ) ( العاب رياضية رائعة ) ( العاب الحركة و التشويق رائعة ) ( العاب تسديد و نيشان رائعة ) ( العاب بازل و متاهات رائعة ) ( العاب ذكاء صعبة ) ( العاب اخرى ) طب وصحة ( الصحه العامه ) ( صحة المرأة و الحامل ) ( سؤال و جواب في النسائية والتوليد ) ( جلدية و تناسلية ) ( باطنية كبد و جهاز هضمي ) ( كلى و مسالك بولية ) ( غدد و سكري ) ( القلب و امراض القلب و الجهاز الدوراني ) ( صحة الطفل و الرضيع ) ( فم اسنان و لثة ) ( عيون و جفون ) ( عظام مفاصل و عضلات ) ( مخ جهاز عصبي و نفسي ) ( الغذاء و الوزن ) ( صحة عامة و اسعافات اولية ) ( عقم و ذكورة ) ( انف اذن حنجرة و صدرية ) ( جراحة عامة و تجميل ) ( امراض الجهاز المناعي ) ( مجموعة "هل تعلم كيف" المصورة التعليمية ) ( الطب البديل ) ( ملفات طبية خاصة ) ( الحصن البدني النفسي الحصين ) ( موسوعة صحة الطفل ) ( اخبار طبية و علمية ) ( تشريح جسم الانسان ) ( البوم الصور الطبية ) كتب فى كتب ( مواقع كتب ومكتبات عربية ) ( كتب هاردوير ) ( كتب انظمة التشغيل ) ( كتب برامج خدمات النظام ) ( كتب برامج التعامل مع الملفات ) ( كتب برامج حماية ) ( كتب برامج ميكروسوفت أوفيس ) ( كتب برامج و طرق التعامل مع الاسطوانات ) ( كتب برامج الوسائط المتعددة ) ( كتب برامج الأعمال المكتبية ) ( كتب برامج التعريب والبرمجة ) ( كتب برامج الإنترنت والتصفح ) ( كتب برامج المحادثة والشات ) ( كتب برامج التصميم ) ( كتب الفوتوشوب ) ( كتب بناء المواقع و المنتديات ) ( كتب اخرى ) صور فى صور فى صور ( ابتسامات فى سمايلات فى ابتسامات ) ( صور اسلامية ) ( صور سيارات ) ( صور فوتوغرافية ) ( خلفيات سطح المكتب ) ( صور دول عربية وعالمية ) ( صور حروف وأرقام ) ( صور جوالات و صور موبايل ) ( صور طريفة ) ( صور خيول ) ( صور من الفضاء ) ( أيقونات و ازرار ) ( خلفيات و صور للمواقع ) ( مناظر و صور طبيعية ) ( صور للمنتديات ) ( صور متحركة ) ( صور اطفال ) افلام فى افلام فى افلام ( افلام وثائقية ) ( افلام مضحكة ) ( افلام نينجا ) اسلاميات ( اغانى اسلامية صيانة الكمبيوتر | تعلم الفرونت بيج | دروس الفوتوشوب | دروس الإستضافه | تعلم ويندوز إكس بى | Mesothelioma Lawyers Mesothelioma Attorneys | PHP MANUAL | FUNCTIONS | تعليم ويندوز إكس بى Microsoft Windows XP | دليل دروس الهادوير | دليل المواقع العربية | صوت الإسلام | Ebooks Home | دروس الفوتوشوب | Holy Book | صحيح البخارى | تطوير المواقع | Cpanel Tutorials | WHM Tutorials | Cpanel User Manual | WHM User Manual | برامج Downloads | راسلنا | منظم القوائم البريديه | موسوعة الأدعيه الصحيحه Islam | Webmasters Tools | Open Directory Project | القران الكريم | Domain Name Registration Glossary | Broken Soft Books | Contact US | دليل دروس الفوتوشوب دليل النينجا | Articles Directory | Mesothelioma Lawyers Articles | Hosting Articles Directory | Article Directory Submission Submit Your Articles | المرجع الإسلامى الشامل | Online Degree | Forex | Adobe PhotoshopTutorials | Forex Trading | Affordable Web Hosting Directory Mesothelioma Lawyers Directory | Conference Calling Services | Qwesz Article Directory - Submit Articles | Qwesz Article Directory - Submit Articles Free | web hosting article directory | Cheap WebHosting Directory | Broken Soft Books Article Directory | Photoshop Tutorials Directory| WebHosting Articles Directory | Mesothelioma Lawyers Article Directory | Microsoft Frontpage Article Directory | Computer Hardware Articles Directory | Americana Hosting Directory | Americana Hosting Article Directory | Articles Directories Directory | Directories Directory | Web Hosting Directory | Cheap Web Hosting Directory | Web Hosting Reviews Directory | Web Hosting Services Directory | Cheap Web Hosting Providers Directory Web Hosting Articles | americana hosting directory Miraco Soft Directory | Broken Soft Web Hosting Directory | Cheap Web Hosting Reviews Services Providers Directory WebMasters Directory Cheap Web Hosting Reviews Services Providers Directory Mesothelioma Lawyers Attorneys Articles Directory Broken Soft Articles Directory AmericanaHost Articles Directory Qwesz Articles Directory Submit Articles Alninga Search Articles Directory Cheap Hosting Articles Directory Articles Directory Algasos Directory Mesothelioma Lawyers Mesothelioma Attorneys Articles Directory Article Directory Directories Directories Directory Free WebMaster SEO Tools Directory WebMasters Directory SEO Chat Tools webmaster tools Article Directory Directories Directories Directory Free WebMaster SEO Tools Directory WebMasters Directory Directories Directory webmaster seo tools directory web hosting directory cheap hosting directory طريق الإسلام Islam Way Web Design Directory Web Hosting Ping Directory Web Hosting Directory webmasters directory Broken Soft Articles Directory Mesothelioma Killer Lawyers Articles Directory Alninga Search Articles Directory Americana Hosting Articles Directory Affordable Web Hosting mesothelioma attorneys articles directory