Código PHP:
<?php
require_once("dompdf/dompdf_config.inc.php");
include "config.php";
$registros=mysql_query("select * from conta",$conexion) or
die("Problemas en el select:".mysql_error());
$reg = mysql_fetch_array($registros);
$matricula=$reg['matricula'];
$html =' ';
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("sample.pdf");
?>