yes...
[php]
if(is_uploaded_file($_FILES['file']['tmp_name'])==true) {
move_uploaded_file($_FILES['file']['tmp_name'],"/home/wherevere/".$_FILES['file']['name']) or die("failed to upload file");
} else {
echo("no file selected for upload!");
[/php]
where 'file' is the name of the file input form
if you haven't already looked at php.net, it is indespensible for any php development.
--will