Tools, FAQ, Tutorials:
FORM Tag for Uploading Files in PHP
How To Write the FORM Tag Correctly for Uploading Files in PHP?
✍: FYIcenter.com
When users clicks the submit button, files specified in the <INPUT TYPE=FILE...> will be transferred from the browser to the Web server. This transferring (uploading) process is controlled by a properly written <FORM...> tag as:
<FORM ACTION=receiving.php METHOD=post ENCTYPE=multipart/form-data>
Note that you must specify METHOD as "post" and ENCTYPE as "multipart/form-data" in order for the uploading process to work. The following PHP code, called logo_upload.php, shows you a complete FORM tag for file uploading:
<?php print("<html><form action=processing_uploaded_files.php" ." method=post enctype=multipart/form-data>\n"); print("Please submit an image file a Web site logo for" ." fyicenter.com:<br>\n"); print("<input type=file name=fyicenter_logo><br>\n"); print("<input type=submit>\n"); print("</form></html>\n"); ?>
Â
⇒Uploading Files to Web Servers in PHP
⇒⇒PHP Tutorials
2016-10-17, 1107👍, 0💬
Popular Posts:
How to use the "set-variable" Policy Statement to create custom variables for an Azure API service o...
What is Azure API Management Developer Portal? Azure API Management Developer Portal is an Azure Web...
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how ...
Where to find tutorials on Using Azure API Management Publisher Dashboard? Here is a list of tutoria...
How to use "link" command tool to link objet files? If you have object files previously compiled by ...