whats wrong with this :s it keeps saying there was an error uploading the file please try again im not too sure if ive done it right :SPHP Code:// Define the upload location
$target_path = "photos";
// Create the file name with path
$target_path = $target_path . basename( $_FILES['upfile']['name']);
// Try to move the file from the temporay directory to the defined.
if(move_uploaded_file($_FILES['upfile']['tmp_name'], $target_path)) {
echo "The file ". basename( $_FILES['upfile']['name']).
" has been uploaded";
} else{
echo "There was an error uploading the file, please try again!";
}





Reply With Quote


