Re: [PHP] Automatically opening pdf files stored in a bytea field

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]



I'm not 100% sure you need the pg_unescape_bytea - I thought that was already done automatically?

Chris

Adam Witney wrote:
Hi,

This may be off-topic as regards the database aspect, but im sure people on
this list must come across this problem.

I have PDF files stored in a bytea field in the database and I want to all
the user to click a link on the web page and have the file automatically
opened in acrobat (or whatever they have set to read the pdf). It works for
most browsers except for in Internet Explorer on windows (surprise
surprise!). Here is my code

 $sql_data = "SELECT filename, file_data FROM dba_suppl WHERE dba_suppl_id =
".$dba_suppl_id.";";
if($stat2 = execute($sql_data))
    {
     if($rows = pg_numrows($stat2))
{ $data = pg_fetch_array($stat2, 0); header("Content-type: application/pdf");
         header('Content-Disposition: attachment;
filename="'.$data['filename'].'"');
echo pg_unescape_bytea($data['file_data']);
        }
    }

If I click it it opens acrobat but acrobat gives an error. If I right click
the link and save to disk I can open the file from there no problem. As I
say, on my mac and on FireFox on windows it does the right thing... Its just
IE on windows!

Is there something I am forgetting to do here? Or is it just IE and there is
no way around it??

Thanks for any help

Adam




---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
      subscribe-nomail command to majordomo@xxxxxxxxxxxxxx so that your
      message can get through to the mailing list cleanly

[Index of Archives]     [Postgresql General]     [Postgresql Admin]     [PHP Users]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Databases]     [Yosemite Backpacking]     [Postgresql Jobs]

  Powered by Linux