Hello
I was just wondering how I can read a .txt file that has all the PDF raw data and then display it in IE as a real PDF file that is viewable and not just data. I know I need to do soemthing with the headers like:
<?
header("Cache-control: private");
header("Content-type: application/$ext");
header("Content-Length: $len");
header("Content-Disposition: inline; filename=test.pdf");
?>
COuld someone please help me put the code where the comment is.