Reputation: 6788
Is it possible to achieve the following:
Think of it as uploading a word document via html form, have a php script as basic as:
<?php
$document = file_get_contents("uploaded_document.txt");
echo $document;
$document = "";
?>
Thank you ahead of time!
Upvotes: 0
Views: 2644