Generating CSV files which open correctly in IE

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Bryan Feeney

    Generating CSV files which open correctly in IE

    I'm working on a site which dynamically generates tables of rates in CSV
    format. The script which does the work is called generate_stats. php. Here's
    the header

    header ("Content-type: application/octet-stream");
    header ("Content-Disposition: attachment; filename=query-results.csv");
    header ("Pragma: no-cache");
    header ("Expires: 0");

    Now in Mozilla, the user is correctly asked if they want to save or open a
    file called query-results.csv

    However in IE5 the user is asked if they want to open or save a file called
    generate_stats. php.
    If they open they're then asked if they want to open or save a file called
    query-results.csv.

    Does anyone know how I can arrange for IE to immediately open a file called
    query-results.csv?

    Thanks
    --
    Bryan



  • Kevin Thorpe

    #2
    Re: Generating CSV files which open correctly in IE

    Bryan Feeney wrote:[color=blue]
    > I'm working on a site which dynamically generates tables of rates in CSV
    > format. The script which does the work is called generate_stats. php. Here's
    > the header
    >
    > header ("Content-type: application/octet-stream");
    > header ("Content-Disposition: attachment; filename=query-results.csv");
    > header ("Pragma: no-cache");
    > header ("Expires: 0");
    >
    > Now in Mozilla, the user is correctly asked if they want to save or open a
    > file called query-results.csv
    >
    > However in IE5 the user is asked if they want to open or save a file called
    > generate_stats. php.
    > If they open they're then asked if they want to open or save a file called
    > query-results.csv.
    >
    > Does anyone know how I can arrange for IE to immediately open a file called
    > query-results.csv?[/color]

    IE is braindead (as if you didn't already know that) and defaults to the
    script name on saving files totally ignoring the disposition filename.

    Link to your script with:

    .... and it might just be able to fathom out what you want it to do. The
    server strips off the last part and shoves it in $_SERVER['PATH_INFO']

    Comment

    • R. Rajesh Jeba Anbiah

      #3
      Re: Generating CSV files which open correctly in IE

      "Bryan Feeney" <bfeeney@oceanf ree.net> wrote in message news:<2iqu0sFq7 t6rU1@uni-berlin.de>...[color=blue]
      > I'm working on a site which dynamically generates tables of rates in CSV
      > format. The script which does the work is called generate_stats. php. Here's
      > the header
      >
      > header ("Content-type: application/octet-stream");
      > header ("Content-Disposition: attachment; filename=query-results.csv");
      > header ("Pragma: no-cache");
      > header ("Expires: 0");
      >
      > Now in Mozilla, the user is correctly asked if they want to save or open a
      > file called query-results.csv
      >
      > However in IE5 the user is asked if they want to open or save a file called
      > generate_stats. php.
      > If they open they're then asked if they want to open or save a file called
      > query-results.csv.
      >
      > Does anyone know how I can arrange for IE to immediately open a file called
      > query-results.csv?[/color]

      <?php
      $file_name = 'file.csv';
      header('Content-Type: text/x-csv');
      // IE need specific header (to show the correct name of downloading file)
      // grabbed from phpMyAdmin...
      if (strstr($_SERVE R['HTTP_USER_AGEN T'], 'MSIE')) {
      header('Content-Disposition: inline; filename="' . $file_name . '"');
      header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
      header('Pragma: public');
      } else {
      header('Content-Disposition: attachment; filename="' . $file_name . '"');
      header('Pragma: no-cache');
      }
      //rest...
      ?>

      --
      | Just another PHP saint |
      Email: rrjanbiah-at-Y!com

      Comment

      Working...