Welcome aboard! We are happy you are here and wish you good net-raft!
<?php
// download from https://php-download.com/package/mpdf/mpdf
include('MPDF57/mpdf.php');
$mpdf=new mPDF();
// create css style
$css=
"<style>
.cssPDF{
margin-bottom:20px;
font-weight:bold;
font-size:34px;
font-family:sans-serif;
border-bottom:3px solid #333;
color:teal;
}
</style>
";
// create the header
$mpdf->WriteHTML("$css<p class='cssPDF'>Hello Net-Raft.com</p>");
// create 10 pages and insert the page numbers
for($i=1;$i<=10;$i++){
$mpdf->AddPage();
$mpdf->WriteHTML("<h1>The page number $i <h1>");
}
$mpdf->Output();
exit;
?>
The most helpful PHP solutions
detect browser phpPHP
Click to see more ...
4.8K
408
create QR code phpPHP
Click to see more ...
3.2K
289
create relative date phpPHP
Click to see more ...
2.3K
264
drag and drop upload file using phpPHP
Click to see more ...
2.9K
253
delete array item phpPHP
Click to see more ...
2.6K
245
detect ie phpPHP
Click to see more ...
1.8K
213
detect speed internet phpPHP
Click to see more ...
1.8K
198
get current url phpPHP
Click to see more ...
2K
197
get meta tag phpPHP
Click to see more ...
1.6K
193
Get real client country using php ?PHP
Click to see more ...
1.6K
181