Jonas Eriksson - 2004-07-27

Here is how to get contents from another(external)  webpage and generate a PDF from its literal content by using BowML together with PDML.

<pdml>
   <body>
<?php
$tParser = BowHTMLParser('www.external.com');
foreach($tParser->document->allStringNodes() as $iStringNode)
   print($iStringNode->textContents());
?>
   </body>
</pdml>