PHP File Upload Problem
Posted on
16th Feb 2014 07:03 pm by
admin
Hi, I have written a very simple file upload script but it fails for reasons I can't explain. Hopefully someone here can help me out. I have checked php.ini and file uploads are on with a limit of 10M. Here's the code:
The Form
Code: <form enctype="multipart/form-data" action="upload.php" method="POST">
Did you know?Explore Trending and Topic pages for more stories like this.
<input type="hidden" name="MAX_FILE_SIZE" value="100000" />
Choose a file to upload: <input name="uploadedfile" type="file" /><br />
<input type="submit" value="Upload File" />
</form>
And the PHP
Code: $target_path = "uploads/";
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path))
{echo "File has been uploaded";}
else
{echo "The upload did not work.";}
Any help is appreciated. Assuming the target path should be [dir where the form and php are]/uploads - this exists and is 777'd.
Thank you
No comments posted yet
Your Answer:
Login to answer
92
6
Other forums
PHP Surveys
I really would like some advice.
If you have a client come to you asking for a survey to be d
fire away
i launched about 4 months ago as a lagit co. i have 2 paying clients, 1probono, 1 side progect, and
Pop-up Banner
Hello Friends,I need to use banner in our client site.Example: www.example.com if i enter this site
Linkage between two scripts
Okay say I have this for a link in a script:
Code: <li><a href="#&q
How to show next and prev records
Hi all,
Sorry if this is simple, i'm very new to php, well, any programming language actually
Not showing whole name with mail () script
I sent up a simple mail form with the PHP mail() script. One problem is when it sends an email with
PHP mail() with images
I'm trying to get images to send along with my HTML e-mail sent through PHP mail(). I only tried vie
Code error with Index.php
Error: Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home/runevid/public_
tag inside php... hi
Code: <?php echo "<td width="$columnWidth%" align=&Search function I am looking for some guidance from the experts.
I am trying to create a search function. It
|