I want to export my current web page to pdf.In image green and blue color are the web page content and button in red color.when I click pdf button current page will get download as pdf.now I loaded sample text 'sample' in load_html.This text will converted into pdf.I want to load the whole page instead of sample text.
<?php
require_once("dompdf_config.inc.php");
$dompdf = new DOMPDF();
$dompdf->load_html("<p>sample</p>");
$dompdf->set_paper('a4', 'portrait');
$dompdf->render();
$dompdf->stream("dompdf_out.pdf"); //for downloading automatically
?>