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
Download data from database to Word and take print
Collapse
X
-
Originally posted by harshmaulHi,
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"'); ?>
Please give some more details.Comment
Comment