Salah satu hal terpenting ketika mempelajari PHP adalah mengenai upload file dan
berbagai macam mekanismenya, dalam tutorial dibawah kita akan belajar :
1. Membuat form untuk upload file
2. Membuat script upload sederhana
3. Menambahkan fitur file_exists untuk mendekti upload file yang sama
4. Menambahkan fitur filter untuk upload jenis file tertentu
Membuat form untuk upload file
(form_upload.html)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"
/>
<title>Upload script</title>
</head>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data"
name="form1" id="form1">
<h3>Upload file :</h3>
<label>
<input type="file" name="fupload" />
</label>
<p>
<label>
<input type="submit" name="upload" value="Upload" />
</label>
</p>
</form>
</body>
</html>
dowuload dokumen: http://ilmukomputer.org/wp-content/uploads/2009/08/kinta-php-upload-file.pdf
Tidak ada komentar:
Posting Komentar