Hi,
I cant make the file to get uploaded.
index.html
<html>
<body>
<form enctype="multipart/form-data" action="uploader.php" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="100000" />
Choose a file to upload: <input name="uploadedfile" type="file" /><br />
<input type="submit" value="Upload File" />
</form>
</body>
</html>
uploader.php
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Uploader php page</title>
</head>
<body>
<?php
$target_path = "uploads/";
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
?>
</body>
</html>