hi i am having a script which allows user to upload images but it is not uploading the images. everything is fine like rand number etc but the image is not only being uploaded. Following is my image uploading form.
<form action="register.php" method="post" enctype="multipart/form-data" name="regForm" id="regForm" >
<table width="95%" border="0" cellpadding="3" cellspacing="3" class="forms">
<tr>
<td>Profile Image<span class="required"><font color="#CC0000">*</font></span> </td>
<td><input name="user_image" type="file" class="required password" id="user_image">
<span class="example">Upload your image</span>
<input name="doRegister" type="submit" id="doRegister" value="Register">
</td>
</tr>
</table>
</form>
And this is register.php
<?php
$path = "user/".time().uniqid(rand()).basename($_FILES['user_image']['name'],'.');
if($user_image !=none)
{
move_uploaded_file($_files['user_image']['tmp_name'], $path);
{
echo "Successful<BR/>";
echo "File Name :".$HTTP_POST_FILES['user_image']['name']."<BR/>";
echo "File Size :".$HTTP_POST_FILES['user_image']['size']."<BR/>";
echo "File Type :".$HTTP_POST_FILES['user_image']['type']."<BR/>";
echo "<img src=\"$path\" width=\"150\" height=\"150\">";
}
}
else
{
echo "Error";
}
?>
In this my uploading folder is user and i also want to know that what is the file name after being uploaded as i want to show it to users so how can I do so. Thanks in advance! If you need more information ask me.