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>
Log in to post a comment.
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>