سلام
من dompdf رو دانلود کردم و طبق آموزش یک فایل جهت خروجی pdf ساختم :
کدها :
خطا:
من dompdf رو دانلود کردم و طبق آموزش یک فایل جهت خروجی pdf ساختم :
کدها :
<?php require_once("dompdf/autoload.inc.php"); include("dompdf/src/Dompdf.php"); $conexion=mysql_connect("localhost","root",""); mysql_select_db("school",$conexion); $codigoHTML=' <!doctype html> <html> <head> <!-- Meta --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Convert to Excel,...</title> <!-- Meta --> </head> <body> <table width="100%" cellspacing="" cellpadding=""> <tr> <td colspan="6">Bingo</td> </tr> <tr bgcolor="blue"> <td>row</td> <td>name</td> <td>family</td> </tr>'; $sql=mysql_query("select * from student"); while($res=mysql_fetch_array($sql)){ $codigoHTML.=' <tr> <td>'.$res['s_id'].'</td> <td>'.$res['s_name'].'</td> <td>'.$res['s_family'].'</td> </tr>'; } $codigoHTML.=' </table> </body> </html> '; $codigoHTML=utf8_encode($codigoHTML); $dompdf=new DOMPDF(); $dompdf->load_html($codigoHTML); ini_set("memory_limit","128M"); $dompdf->render(); $dompdf->stream("Reporte_table_usuarios.pdf"); ?>
خطا:
کد:
Fatal error: Class 'DOMPDF' not found in C:\xampp\htdocs\Test\reporte_pdf.php on line 50