How to make a basic PHP uploader? I want my images to save in my htdocs/myfolder/....
Here is my code:
<form enctype="multipart/form-data" method="post" action="img_uploader.php"> <input type="file" name="fileToUpload" /><br /> <input type="submit" value="Upload File" /> </form>