And I create an interface in an include file call 'form_upload.inc'
<html>
<head><title>File Upload</title></head>
<body>
<p>Enter the name of the picture</p>
<div align="center"><form enctype="multypart/form-data"
action="uploadFile.php method=POST">
<input type="hidden" name="MAX_FILE_SIZE" value="500000">
<input type="file" name="pix" size="60">
<p><input type="submit" name="Upload"
value="Upload Picture">
</form>
</body>
</html>
interface is working but uploaded image is not at the particular destination, "F:/Installed\/Xampp/xampp/htdocs/test/upload".
I have set "upload_tmp_dir=" in php.ini to the destination address.
but when I upload "object not found" error occurred...