Buen día, necesito por favor una ayuda, la ideas es que cuando consulte por el rif de una empresa aparezca los indicadores de dicha empresa y si el usuario quiere imprimir que imprima un PDF.
La consulta trabaja bien, necesito saber como hago para colocar la data de la consulta, es decir la data que traigo de la base de datos y la lleve al PDF, trate de hacer hacerlo con fpdf pero no se como colocar los resultados que me arroja la consulta.
A) ESTA ES LA CONSULTA QUE TRABAJA BIEN
<?php
$rif=$_POST["txtrif"];
include("claseconexion.php");
include("claseconsultar1.php");
$obj_con=new consultarbalance123($rif);
$resul=$obj_con->consultar();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>SISTEMA DE PUESTO DE TRABAJO</title>
</head>
<body>
<center>
<h1>BANANCE GENERAL Y ESTADO DE RESULTADOS</h1>
<table border="0">
<form action="documento.php" method="POST">
<tr>
<td>RIF:</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><input type="text" style="text-align:center" name="txtrif" disabled="disabled" value=<?php echo $resul[0]['rif'];?>></td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>Empresa:</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><input type="text" STYLE="text-align:center" name="txtnombre" size="35" disabled="disabled" value=<?php echo $resul[0]['nombre'];?>></td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td></td>
<td><center>Año</center></td>
<td><center>Año</center></td>
<td><center>Año</center></td>
</tr>
<tr>
<td width="339"></td>
<td width="144"><input type="text" STYLE="text-align:center" name="txta1" disabled="disabled" value=<?php echo $resul[0]['periodo1'];?>></td>
<td width="144"><input type="text" STYLE="text-align:center" name="txta2" disabled="disabled" value=<?php echo $resul[0]['periodo2'];?>></td>
<td width="150"><input type="text" STYLE="text-align:center" name="txta3" disabled="disabled" value=<?php echo $resul[0]['periodo3'];?>></td>
</tr>
<tr>
<td><strong>Indicadores Financieros</strong></td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>Patrimonio</td>
<td><input type="text" STYLE="text-align:right" name="txtba1" disabled="disabled" value=<?php echo $resul[0]['ba1'];?>></td>
<td><input type="text" STYLE="text-align:right" name="txtba2" disabled="disabled" value=<?php echo $resul[0]['ba2'];?>></td>
<td><input type="text" STYLE="text-align:right" name="txtba3" disabled="disabled" value=<?php echo $resul[0]['ba3'];?>></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> <input type="submit" value="Imp PDF" /></td>
</tr>
</form>
</table>
</center>
</body>
</html>
<html>
<body>
<br>
<br>
<center>
<a href="menu.html">volver al menu Principal</a>
</center>
</body>
</html>
B) ESTO E SLO QUE ESTOY TRATANDODE HACER
<?php
include_once('fpdf.php');
$doc=new FPDF('P','mm','A4');
$doc->AddPage();
$doc->SetFont('Arial','B',16);
$doc->Ln();
$doc->Cell(50,9,'Rif: '.$_POST [''],0,2,'L');
$doc->Output();
?>
Si por favor me pueden ayudar lo agradeceria.