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.
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
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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.