PHP Tutorial For Beginners

Upload File PHP

How to Upload File PHP with simple step? Ok, This post will show you. Actualy this juts like copy file from 1 folder to another foler, and here this script fo upload.

1. Make a Form HTML.
<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>
Ok Let Me Show you what the meaning of red text and blue text.

  • Upload_file.php : This is the destination submit form after you click submit
  • post: its a method for send data, Actualy you can use GET or POST. But if you want to more safe use POST
  • multipart/form-data : its a propery for upload file, its mean you can upload a file like mp3,video, foto or file.
2. Create upload_file.php


0 Response to "Upload File PHP"

Posting Komentar