Untitled
By: a guest | Mar 18th, 2010 | Syntax:
PHP | Size: 0.45 KB | Hits: 72 | Expires: Never
<?php
$target_path = "upload_file/";//<wanru--change this to a folder u want the file to be with respect to this file.
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
echo "The file ". basename( $_FILES['uploadedfile']['name']).
" has been uploaded ";
} else{
echo "There was an error uploading the file, please try again! ";
}
?>