Jump to content

simple upload script not working or giving any error... help!!


just-j

Recommended Posts

html code for the form
[code]
<form action="uploader.php" method="post"><br>
<input type="hidden" name="MAX_FILE_SIZE" value="10000000" />
Type (or select) Filename: <input type="file" name="uploadFile">
<input type="submit" value="Upload File">
</form>
[/code]

and this is the PHP code...
[code]<?php
if ( move_uploaded_file ($_FILES['uploadFile'] ['tmp_name'],
      "tbbc/mp3z/{$_FILES['uploadFile'] ['name']}")  )
      {  echo "The file has been successfully uploaded";
      }
else
      {
        switch ($_FILES['uploadFile'] ['error'])
        {  case 1:
                  echo " The file is bigger than this PHP installation allows";
                  break;
            case 2:
                  echo " The file is bigger than this form allows";
                  break;
            case 3:
                  echo " Only part of the file was uploaded";
                  break;
            case 4:
                  echo " No file was uploaded";
                  break;
        }
      }
?>
[/code]

it dosent return anything when i click the upload button on the form..  no error and no success...  just shows a blank page.  im also running wamp5 if that helps.
Link to comment
Share on other sites

ok  that solved the problem,  but now i get this error..
=================

Warning: move_uploaded_file(tbbc/mp3z/07 Way Up Top.wma) [function.move-uploaded-file]: failed to open stream: No such file or directory in C:\wamp5\www\tbbc\uploader.php on line 11

Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move 'c:/wamp5/tmp\phpA39.tmp' to 'tbbc/mp3z/07 Way Up Top.wma' in C:\wamp5\www\tbbc\uploader.php on line 11

=================
the directory mp3z is in the same directory as the .php file
Link to comment
Share on other sites

ok that worked  but what do i have to add to make it move the file to the "mp3z" directory that is a subdirectory where the webpage is.  right now it moves the file to the webpage directory

web page directory is /tbbc  and i need the file to move to /tbbc/mp3z
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.