Hola a todos hasta el momento mi codigo esta asi, quite 2 columnas que tenia nulas en mi tabla, y habia un head no cerrado, pero sigue igual. Me abre el pdf en blanco, alguna sugerencia????
Código PHP:
Ver original<?php
//conexion a la base
$conexion=mysql_connect('localhost','root','')or
die("IMPOSIBLE CONECTARSE AL SERVIDOR"); $c="SELECT * FROM productos";
$salida="<table width='100%' border='0' cellspacing='0' cellpadding='0' class='ordenes'>";
for($y=0;$y<$filas;$y++)
{
$salida.="<tr><td width='88%'>Nombre:$nombre <a href='reporte.php?idp=$idp'>Ver</a></td></tr>";
}
$salida="</table>";
require_once("dompdf/dompdf_config.inc.php");
$dompdf = new DOMPDF();
$html="<html>
<head>
</head>
<body>
$salida
</body>
</html>";
$dompdf->set_paper("letter","portrait");
$dompdf->load_html($html);
$dompdf->render();
$pdf = $dompdf->output();
$dompdf->stream("Reporte.pdf");
?>