try this.
http://www.wampserver.com/en/ and run your server free from home.
http://www.youtube.com/watch?v=-rKDhZJignU*************
file upload code
*************
<HTML>
<b>File Upload</b>
<form enctype="multipart/form-data" action="upload.php" method="POST">
<input name="uploaded" type="file" /><br />
<input type="submit" value="Upload" />
</HTML>
******
.php
******
<?php
$target = "upload/";
$target = $target . basename( $_FILES['uploaded']['name']) ;
$ok=1;
if(move_uploaded_file($_FILES['uploaded']['tmp_name'], $target))
{
echo "The file ". basename( $_FILES['uploaded']['name']). " has been uploaded";
}
else {
echo "Sorry, there was a problem uploading your file.";
}
?>
this assumes theres a folder in your webserver called upload and will place a browse button and upload button on your site and upload it into upload folder
hope this helps someone