Aye, here it is (not finished, just using it to test the upload):
PS - I am being hosted for free by a friend, so i cant really complain 😉
<?php
$destino = "/usr/local/psa/home/vhosts/neojag.wonderwormonline.com/httpdocs/".$HTTP_POST_FILES['userfile']['name'];
$fonte = $HTTP_POST_FILES['userfile']['tmp_name'];
if ($userfile) {
copy ($fonte, $destino);
}
?>
<form enctype="multipart/form-data" action="upload.php" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="10000000">
Send this file: <input name="userfile" type="file" value="browse">
<input type="submit" value="Send File">
</form>