<form enctype="multipart/form-data" action="upload.php" method="post"> Please upload your file: <div> <input id="fileUpload" name="fileUpload" type="file"> <input id="submit" name="submit" value="Submit" type="submit"> </div> </form>
<?php $target_path = "uploads/"; $target_path = $target_path . basename( $_FILES['fileUpload']['name']); if (isset($_FILES['fileUpload'])) { if(move_uploaded_file($_FILES['fileUpload']['tmp_name'], $target_path)) { echo "The file ". basename( $_FILES['fileUpload']['name']). " has been uploaded"; } else { echo "There was an error uploading the file, please try again!"; } } ?>
with Ralph Whitbeck & Elijah Manor
You can subscribe to the show in iTunes or via the raw RSS feed