Tools, FAQ, Tutorials:
INPUT Tag for File Uploading in PHP
Which HTML Tag Allows Users to Specify a File for Uploading in PHP?
✍: FYIcenter.com
To present an input field on your Web page to allow users to specify a local file to upload, you need to use the <INPUT TYPE="FILE" ...> tag inside a <FORM ...> tag. The <INPUT TYPE="FILE" ...> will be displayed as a text input field followed by a button called "Browse...". Users can either enter the full path name of a local file, or click Browse button to go through a dialog box to select a file interactively. The following PHP code shows you a good example of the file upload tag:
<?php print("<html><form>\n"); print("<input type=file>\n"); print("<input type=submit>\n"); print("</form></html>\n"); ?>
If you copy this script to PHP file and test it on your Web server, you should see a file upload field.
⇒ FORM Tag for Uploading Files in PHP
2016-10-17, 1835🔥, 0💬
Popular Posts:
What is EPUB 2.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 2.0 Metadata "dc:publisher" ...
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how ...
How to start Visual Studio Command Prompt? I have Visual Studio 2017 Community version with Visual C...
What Is Azure API Management Service? Azure API Management as a turnkey solution for publishing APIs...
How To Avoid the Undefined Index Error in PHP? If you don't want your PHP page to give out errors as...