Welcome Guest, Not a member yet? Register   Sign In
problem with dompdf
#7

[eluser]romeo[/eluser]
Yes, you are right. I have corrected it ready, but it's still not work.Please look at my code below:
to_pdf_pi.php
Code:
function pdf_create($html, $filename)
{
    require_once("dompdf/dompdf_config.inc.php");
    
    $dompdf = new DOMPDF();
    $dompdf->load_html($html);
    $dompdf->render();
    $dompdf->stream($filename.".pdf");
}
?>

Here is my controller:
Code:
function pdf()
    {
        $this->load->plugin('to_pdf');
        $this->load->helper('file');
        $data['title'] ='Daily Report';
        $data['dialy_visitor'] = $this->report->daily_visitor();
        $html = $this->load->view('report/report_visitor_daily', $data, TRUE);
        echo $html;
        pdf_create($html,'Daily_Report');
    }

Here is my Veiw:
Code:
<table class="invoice_items stripe">
        <tr>
            <th>ID</th>
            <th>Visitor Name</th>
            <th>Time in</th>
            <th>Goal</th>
        </tr>
        &lt;?php foreach ($dialy_visitor as $item):?&gt;
        <tr valign="top">
            <td><p>&lt;?php echo $item->vis_id;?&gt;</p></td>
            <td>&lt;?php echo $item->vis_name;?&gt;</td>
            <td><p>&lt;?php echo $item->vis_time_in;?&gt;</p></td>
            <td><p>&lt;?php echo $item->vis_goal?&gt;</p></td>
        </tr>
        &lt;?php endforeach;?&gt;
    </table>

Best regards,


Messages In This Thread
problem with dompdf - by El Forum - 06-29-2009, 12:12 AM
problem with dompdf - by El Forum - 06-29-2009, 12:21 AM
problem with dompdf - by El Forum - 06-29-2009, 02:08 AM
problem with dompdf - by El Forum - 06-29-2009, 02:19 AM
problem with dompdf - by El Forum - 06-29-2009, 02:25 AM
problem with dompdf - by El Forum - 06-29-2009, 02:27 AM
problem with dompdf - by El Forum - 06-29-2009, 02:34 AM
problem with dompdf - by El Forum - 06-29-2009, 02:36 AM
problem with dompdf - by El Forum - 06-29-2009, 02:38 AM
problem with dompdf - by El Forum - 06-29-2009, 03:25 AM
problem with dompdf - by El Forum - 06-29-2009, 07:15 PM



Theme © iAndrew 2016 - Forum software by © MyBB