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, 1857🔥, 0💬
Popular Posts:
Where to find tutorials on RSS specifications? I want to learn it to describe my API services. Here ...
How To Convert a Character to an ASCII Value? If you want to convert characters to ASCII values, you...
How to login to Azure API Management Publisher Dashboard? If you have given access permission to an ...
What is Azure API Management Gateway? Azure API Management Gateway is the Azure Web server that serv...
How to add request URL Template Parameters to my Azure API operation 2017 version to make it more us...