<html>
<head>
<title>Yahoo</title>
</head>
<body bgcolor=olive>
<font size=6 color=yellow>
<?php
echo "<pre>";
print_r($_FILES);
echo "</pre>";
echo "time ".time()."<br>";
echo "Original Name of the file :".$_FILES['up']['name']."<br>";
echo "Type of the file :".$_FILES['up']['type']."<br>";
echo "Temperory name of the file : ".$_FILES['up']['tmp_name']."<br>";
echo "File size : ".($_FILES['up']['size']/1024)." kbs";
if(isset($_FILES))
{
$d='../uploads/'.time()." ".$_FILES['up']['name'];
if(move_uploaded_file($_FILES['up']['tmp_name'],$d))
{
echo "File moved Successfully";
}
else
{
echo "Moving the file is Failed";
}
}
else
{
Echo "Error in uploading the file";
}
?>
</font>
</body>
</html>
No comments:
Post a Comment