Wednesday, January 30, 2013

Report PDF dengan HTML2PDF

monggo di download aja disini http://www.4shared.com/zip/RgJkh8qq/html2pdf.html?

extract , dan buka ada folder Example , silahkan di ulik disitu udah ada panduannya , kita hanya menggunakan tag html saja , buka file about.php ,

<?php     ob_start();
//buka folder res , dan buka file about , itulah tag yang akan dijadikan report    

include(dirname('__FILE__').'/res/about.php');
    $content = ob_get_clean();

    try
    {
        $html2pdf = new HTML2PDF('P', 'A4', 'fr', true, 'UTF-8', array(0, 0, 0, 0));
        $html2pdf->pdf->SetDisplayMode('fullpage');
        $html2pdf->writeHTML($content, isset($_GET['vuehtml']));
        $html2pdf->createIndex('Sommaire', 30, 12, false, true, 2);
        $html2pdf->Output('about.pdf');
    }
    catch(HTML2PDF_exception $e) {
        echo $e;
        exit;
    }

No comments:

Post a Comment