Try this and see if it will work:
<html>
<head>
<title>Upload</title>
</head>
<body>
<?php
if($submit) {
echo "<h1>Uploading file...</h1>";
if($userfile == "none"

{
echo "no file uploaded<br>\n";
exit;
}
if($userfile_size == 0) {
echo "no size to your file!<br>\n";
exit;
}
if(!is_uploaded_file($userfile)) {
echo "possible file upload attach<br>\n";
exit;
}
$upfile = "/home/ipacdev/inlandpac-
if(!copy($userfile,$upfile)) {
echo "copy failed!<br>\n";
exit;
}
echo "File uploaded successfully<br><br>";
}
?>
<form enctype="multipart/form-data" action="<?php echo $PHP_SELF; ?>" method="post">
<input name="userfile" type="file">
<input type="submit" name="submit" value="Upload">
</form>
</body>
</html>
If it will not, you won't have much luck getting anything to work unless the PHP on your server has ftp enabled (use PHP's ftp functions).
If this does not work, and you do have PHP's ftp API enabled, then I have a script you can use that works like a charm.
chad. ICQ: 54380631