PHP is world's no. 1 server side scripting language, it comes with plenty of features and one of the most famous one is file uploading which is extensively used world wide.

Save this file as gallery.php

Self Explanatory PHP File UploadingExample
First Create a directory called gallary/ .Save this file as gallery.php
<!DOCTYPE html>
<html lang="en">
<head>
<title>File Uploading</title>
<meta charset="utf-8" />
</head><body>
<?php
$path="gallery/";
$path=$path.$_FILES['file_upload']['name'];
if(isset($_POST['upload']))
{
if(move_uploaded_file($_FILES['file_upload']['tmp_name'],$path))
{
echo "The file ".basename($_FILES['file_upload']['name'])." has been uploaded";
}
else
{
echo "There is an error,please retry or ckeck path";
}
}
?>
<form action="gallery.php" method="post" enctype="multipart/form-data">
<table width="384" border="1" align="center">
<tr>
<td width="108">Select File</td>
<td width="260"><label>
<input type="file" name="file_upload">
</label></td>
</tr>
<tr>
<td><label>
<input type="submit" name="upload" value="Upload File">
</label></td>
<td> </td>
</tr>
</table>
</form>
$path="gallery/";
$path=$path.$_FILES['file_upload']['name'];
if(isset($_POST['upload']))
{
if(move_uploaded_file($_FILES['file_upload']['tmp_name'],$path))
{
echo "The file ".basename($_FILES['file_upload']['name'])." has been uploaded";
}
else
{
echo "There is an error,please retry or ckeck path";
}
}
?>
<form action="gallery.php" method="post" enctype="multipart/form-data">
<table width="384" border="1" align="center">
<tr>
<td width="108">Select File</td>
<td width="260"><label>
<input type="file" name="file_upload">
</label></td>
</tr>
<tr>
<td><label>
<input type="submit" name="upload" value="Upload File">
</label></td>
<td> </td>
</tr>
</table>
</form>
</body></html>
Tidak ada komentar:
Posting Komentar