Jump to content

PHP script: Is anything actually wrong with this???


KkillgasmM

Recommended Posts

Ive decided to cut the script down a lot since my last thread, in order to make it easier to find an error.

 

i just keep getting the error message under the else statement!

 

Ive made sure that all of the folder permissions are on full and it doesnt fix the problem. Also, ive made sure that the directory actually exists and it does.

 

<?php


$target="Images/workpics/";
$mode=0777;


$target=$target.'pic.jpg';
chmod($target, $mode)


if(move_uploaded_file($_FILES['file']['tmp_name'], $target))
{

echo 'worked';

}

else
{
echo 'error';
}

?>

 

I've been looking ALL over the web and i just cant figure out why it wont work. maybe its a problem with the server?

 

Please help me as it is quite urgent!

 

Thanks.

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.