Thursday, August 11, 2011

php file upload

 This is simple file upload using HTML  in this use only the <input type="file" name="file" id="file" /> this is generate the popup for upload the image or file or video.

<html>
<body>

<form action="upload_file.php" method="post"
enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file" />
<br />
<input type="submit" name="submit" value="Submit" />
</form>

</body>
</html>

No comments:

Post a Comment