Welcome Guest, Not a member yet? Register   Sign In
[SOLVED]object not found
#1

[eluser]diasansley[/eluser]
i am using the following controller but when i say localhost/codeigniter/pdf_test
it says object cannot be found.


Code:
<?php
class pdf_test extends Controller {

    function pdf_test()
    {
        parent::Controller();
    }

    function tcpdf()
    {
        $this->load->library('pdf');

        // set document information
        $this->pdf->SetSubject('TCPDF Tutorial');
        $this->pdf->SetKeywords('TCPDF, PDF, example, test, guide');
        
        // set font
        $this->pdf->SetFont('times', 'BI', 16);
        
        // add a page
        $this->pdf->AddPage();
        
        // print a line using Cell()
        $this->pdf->Cell(0, 12, 'Example 001 - €à èéìòù', 1, 1, 'C');
        
        //Close and output PDF document
        $this->pdf->Output('example_001.pdf', 'I');        
    }
}
?>

Thanks Rgds


Messages In This Thread
[SOLVED]object not found - by El Forum - 12-01-2010, 01:27 AM
[SOLVED]object not found - by El Forum - 12-01-2010, 02:07 AM
[SOLVED]object not found - by El Forum - 12-01-2010, 03:09 AM
[SOLVED]object not found - by El Forum - 12-01-2010, 03:37 AM
[SOLVED]object not found - by El Forum - 12-01-2010, 03:42 AM
[SOLVED]object not found - by El Forum - 12-01-2010, 04:02 AM
[SOLVED]object not found - by El Forum - 12-01-2010, 04:29 AM
[SOLVED]object not found - by El Forum - 12-01-2010, 04:31 AM
[SOLVED]object not found - by El Forum - 12-01-2010, 04:39 AM
[SOLVED]object not found - by El Forum - 12-01-2010, 04:43 AM
[SOLVED]object not found - by El Forum - 12-01-2010, 05:08 AM
[SOLVED]object not found - by El Forum - 12-01-2010, 05:09 AM
[SOLVED]object not found - by El Forum - 12-01-2010, 05:12 AM
[SOLVED]object not found - by El Forum - 12-01-2010, 05:14 AM



Theme © iAndrew 2016 - Forum software by © MyBB