hi pals,
Im doing in-home project such that a document is being generated on the values i give in html document.
how can i include header and footer for the word document by php code .
MY cod for generating document is
<?php
$str=$_POST.".doc";
header("Content-Type: application/vnd.ms-word");
header("content-disposition: attachment;filename=$str");?>
<html>
<body leftmargin="30px" topmargin="30px" marginwidth="50px" marginheight="50px">
This is test word document.
</body>
</html>
thanks in advance