Дизайн
мой pdf.php похож на
Код: Выделить всё
Код: Выделить всё
public function generate_pdf() {
$this->load->library('pdf');
// Bootstrap CSS for styling
$htmlContent = $this->load->view('pdf_template', [], TRUE);
// Generate PDF
$pdfContent = $this->pdf->createPDF($htmlContent, 'sample.pdf', FALSE);
// Save PDF to file
$pdfFilePath = FCPATH . 'uploads/sample.pdf';
file_put_contents($pdfFilePath, $pdfContent);
// Send email with the PDF attachment
$this->send_email_with_attachment($pdfFilePath);
}
Подробнее здесь: https://stackoverflow.com/questions/787 ... ot-loading
Мобильная версия