Hi,
I am not able to upload files to an "uploads" folder that i have made within my domain public_html folder..
I have already given 777 permissions to this folder, still no luck..
here is the php file that processes the form.html, where i upload files
--------------------------------------------
<?php session_start();
//variables
$target = "/upload/resume;
$target = $target . basename( $_FILES['resume']['name']);
//Writes the files to the upload path
(move_uploaded_file($_FILES['resume']['tmp_name'],$target))
?>
----------------------------------------------
please help..



LinkBack URL
About LinkBacks




