Hi,

I've managed to make the PDF download system work.

But when it opens in acrobat reader, i get the error you can see in:
http://www.gamito.org/fucked-pdf-2.jpg

The code follows my signature.

Any help would be appreciated.

Warm Regards
-- 
:wq! Mário Gamito
--

<?php

session_start();

if (isset($_SESSION['email'])) {
 $error = false;
  if (isset($_GET['file'])) {
   $file = basename($_GET['file']);
   $full = '/var/www/testudio.pdf';
   if (!is_readable($full))
    $error = "Invalid filename.";
   } else {
    $error = "No filename given.";
  }

  header('Content-type: application/pdf');
  header("Content-Length: " . filesize($data));
  header('Content-disposition: attachment; filename="testudio.pdf"');
  readfile("testudio.pdf");
 }
?>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to