I get this error message
Success!
Warning: Unable to create 'images/temp/': Is a directory in /home/vicsdesi/public_html/housebid/validpayment.php on line 5
Warning: Unable to move '/tmp/php8oz7b8' to 'images/temp/' in /home/vicsdesi/public_html/housebid/validpayment.php on line 5
when i try to upload a file using this code
<?php
if (is_uploaded_file($FILES['toProcess']['tmp_name']))
{
echo "Success!";
move_uploaded_file($FILES['toProcess']['tmp_name'], "images/temp/$file");
}
?>
<form enctype="multipart/form-data" action="<?= $PHP_SELF ?>" method = "post">
<input type="hidden" name="MAX_FILE_SIZE" value="500000">
File name: <input name="toProcess" type="file">
<input type="submit" value="Upload">
</form>
I know the file uploaded becouse it echos success!, but why is it looking for the directory validpayment.php ?????