[eluser]francesco mally[/eluser]
I cut some code
This my code :
$row0 =4.3;
$this->load->library('fpdf');
define('FPDF_FONTPATH',$this->config->item('fonts_path'));
$this->fpdf->open();
$this->fpdf->AddPage('P');
$this->fpdf->SetFont('Arial','',14);
$this->fpdf->Image('images/logo.jpg',25,5,24,0);
foreach($data as $dt) // $data['name'],$data['pic'],etc
{
$this->fpdf->Image('pic/'.$dt->pic); //always error at this line
}
$this->fpdf->Output();
exit();
Hope someone can help me with this error
Thank you