hello

I'm trying to generate ms-word files with php. Until now, I can create a
document and even insert page-breaks. Is there any tutorials going further
(boxes, mergedocuments etc...)?

this is my code so far:

<?php
 header ('Content-type: application/msword ');
 header ('Content-Description: PHP Generated Data');
 header ('Content-Disposition: inline; filename="test.doc"');
?>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
Text before PagBreak
<br clear=all style='page-break-before:always'>
Text after PagBreak</body>
</html>

Thank you for any help.
michael




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to