CoolFace
Apppublic

kenken999/php

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
pdfprogress.php11 linesDownload Raw Back to public
1<?php2session_start();3$filename=@$_SESSION["pdf_filename"];4$file = @fopen($filename,"rb");5if($file)6{7	$contents = @fread($file, filesize($filename));8    echo $contents;9    @fclose($file);10}11?>