Warning: move_uploaded_file(../uploads/IMG_23052014_111633.png): failed to open stream: No such file or directory in C:\wamp\www\test.co\getfile.php on line 8
Warning: move_uploaded_file(): Unable to move 'C:\wamp\tmp\php9EF8.tmp' to '../uploads/IMG_23052014_111633.png' in C:\wamp\www\test.co\getfile.php on line 8
how to get rid of it?
HTML code:
<form action="getfile.php" method="post" enctype="multipart/form-data" ><br>
Type (or select) Filename: <input type="file" name="uploadFile">
<input type="submit" value="Upload File">
</form>
PHP code:
<html>
<head>
<title>Process Uploaded File</title>
</head>
<body>
<?php
move_uploaded_file ($_FILES['uploadFile'] ['tmp_name'],
"../uploads/{$_FILES['uploadFile'] ['name']}")
?>
</body>
</html>