Cineblog by Spipu
HTML2PDF
Lambda Finder
Gestion des Opens - Yaronet
A propos de moi
Programmes by Spipu
Ligne dans un paragraphe, test de texte assez long pour engendrer des retours à la ligne automatique... a b c d e f g h i j k l m n o p q r s t u v w x y z a b c d e f g h i j k l m n o p q r s t u v w x y z test de texte assez long pour engendrer des retours à la ligne automatique... a b c d e f g h i j k l m n o p q r s t u v w x y z a b c d e f g h i j k l m n o p q r s t u v w x y z Ligne dans un paragraphe, test de texte assez long pour engendrer des retours à la ligne automatique... a b c d e f g h i j k l m n o p q r s t u v w x y z a b c d e f g h i j k l m n o p q r s t u v w x y z test de texte assez long pour engendrer des retours à la ligne automatique... a b c d e f g h i j k l m n o p q r s t u v w x y z a b c d e f g h i j k l m n o p q r s t u v w x y z |
Test de paragraphe :) |
<?php /** * HTML2PDF Librairy - example * * HTML => PDF convertor * distributed under the LGPL License * * @author Laurent MINGUET <webmaster@html2pdf.fr> * * isset($_GET['vuehtml']) is not mandatory * it allow to display the result in the HTML format */ ob_start(); include(dirname(__FILE__).'/res/exemple10.php'); $content = ob_get_clean(); try { $html2pdf = new HTML2PDF('P', 'A4', 'fr'); $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); $html2pdf->Output('exemple10.pdf'); } catch(HTML2PDF_exception $e) { echo $e; exit; }