how create pdf file in html or php using dompdf | dompdf how to use | dom pdf tutorial | dom pdf tutorial in core php
how create pdf file in html or php using dompdf | dompdf how to use | dom pdf tutorial | dom pdf tutorial in core php <?php /* dom pdf tutrial dom download dompdf use this command in cmd: - composer require dompdf/dompdf */ include("vendor/autoload.php"); use Dompdf\Dompdf; $dompdf = new Dompdf(); $array=["Name"=>"Saddam hussain","company"=>"Spinks india pvt. ltd.","designation"=>"php webdeveloper","youtube"=>'http://localhost/php/dompdf/']; $data='<table style="width: 100%;" border="1" cellpadding="3"> <tbody>'; foreach ($array as $key => $value) { $data.='<tr> <td style="width: 13.9793%;">'.$key.'</td> <td style="width: 85.0207%;">'.$value.'</td> </tr>'; } $data.='</tbody> </table> ...