To browse a hard drive for files in a for use this:
<input type="file" name="image">
that will show the browse button as well.
then to copy the image to a folder go
<?php
$upload = @copy("/path/to/image/folder/$image");
if(!$upload) die ("Could Not Upload!");
?>