Box Posted July 12, 2009 Share Posted July 12, 2009 This should be very very simple and its been driving me crazy since Thursday night. The directory is chmodded to 777 so its not that my form is: <table> <tr> <form action="managemusic.php" method="post"> <td>Track Name/Comp: </td><td><input type="text" name="name"/></td></tr> <td>Artist/Squad: </td><td><input type="text" name="artist" /></td></tr> <td>Filename: </td><td><input type="file" name="uploadedfile" /> </td></tr> <tr><td colspan="3" align="center"><input type="submit" value="Add Song"/></td?</tr> </form> </table> and my code to upload the file from this form is: move_uploaded_file ($_FILES['uploadedfile'] ['tmp_name'], "../player/$_FILES['uploadedile'] ['name']"); I cannot for the life of me get the file to upload or even be acknowledged. I've tried echoing the variables out and they show nothing. Am I at a lost cause and have spent so many hours googling and playing with the code, this is the 3rd version and the most basic (less code there is, the less to go wrong with it, ill add in the error checking again once I get the main part working! some please put me out of my misery Quote Link to comment https://forums.phpfreaks.com/topic/165716-solved-uploading-a-file/ Share on other sites More sharing options...
PFMaBiSmAd Posted July 12, 2009 Share Posted July 12, 2009 Your <form tag is missing an enctype attribute that is necessary for an upload to to work. There are examples in the php documentation - http://us2.php.net/manual/en/features.file-upload.post-method.php Quote Link to comment https://forums.phpfreaks.com/topic/165716-solved-uploading-a-file/#findComment-874157 Share on other sites More sharing options...
Gamerz Posted July 12, 2009 Share Posted July 12, 2009 Find this in your code: <form action="managemusic.php" method="post"> and replace with this: <form action="managemusic.php" method="post" enctype="multipart/form-data"> And it should work fine, as I tested.. Quote Link to comment https://forums.phpfreaks.com/topic/165716-solved-uploading-a-file/#findComment-874174 Share on other sites More sharing options...
Box Posted July 12, 2009 Author Share Posted July 12, 2009 :'( Such a rookie mistake. I assumed the php was wrong and completely overlooked the html form itself. It works absolutely fine now. I think I'll go sulk in the corner for a while now Thanks Quote Link to comment https://forums.phpfreaks.com/topic/165716-solved-uploading-a-file/#findComment-874183 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.