Código PHP:
Ver original
<?php require_once("dompdf_config.inc.php"); /* mysql_query... mysql_fetch... */ $html = 'generated html...'; $dompdf = new DOMPDF(); $dompdf->load_html($html); $dompdf->render(); $dompdf->stream("/tmp/sample.pdf"); /* Add mail to code to attach /tmp/sample.pdf to a email and send */ ?>
El mio lo tengo asi.
Código PHP:
Ver original
<?php require_once("../pdf/dompdf/dompdf_config.inc.php"); /* mysql_query... mysql_fetch... */ $html = 'Aqui he probado sin exito -_-'; $dompdf = new DOMPDF(); $dompdf->load_html($html); $dompdf->render(); $dompdf->stream("sample.pdf"); /* Add mail to code to attach /tmp/sample.pdf to a email and send */ ?>
En lo que me he trabado es que no se como meter este codigo en $html:
Código PHP:
Ver original
echo "<table width='200' border='1' align='center' > <td align='center'>Nombre</td> <td align='center'>Apellido</td> \n"; do { echo " <tr> <td align='center'>".$row["nombre"]."</td> <td align='center'>".$row["apellido"]."</td> <td align='center'><form action='frmprueba.php' method='get'> <input type='hidden' name='idprueba' value=".$row["idprueba"]." /> <input type='hidden' name='nombre' value=".$row["nombre"]." /> <input type='hidden' name='apellido' value=".$row["apellido"]." /> </form></td> </tr> "; echo "</table> \n"; } else { echo "¡ No se ha encontrado ningún registro !"; }
Les agradeceria que me pudieran orientar un poco gracias.