Download data from database to Word and take print

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • robin1983
    New Member
    • Oct 2007
    • 99

    Download data from database to Word and take print

    HI guys, i got stuck in a problem, actually i have a form for registration. Actually what i want is that when the registration is finished then i wanto to access the data in word formate and take a print. I know how to download in case of excel, but not in word. if it is possible in word then please help me. thanks in advance
  • harshmaul
    Recognized Expert Contributor
    • Jul 2007
    • 490

    #2
    Hi,

    Content disposition is the way forward....
    Add these few lines at the top of your page.

    Code:
    <?php
    header('Content-type: application/application/msword');
    header('Content-Disposition: attachment; filename="downloaded.doc"');
    ?>

    Comment

    • ifedi
      New Member
      • Jan 2008
      • 60

      #3
      Originally posted by harshmaul
      Hi,

      Content disposition is the way forward....
      Add these few lines at the top of your page.

      Code:
      <?php
      header('Content-type: application/application/msword');
      header('Content-Disposition: attachment; filename="downloaded.doc"');
      ?>
      Thereafter, what?
      Please give some more details.

      Comment

      Working...