Muchas gracias!!! que pena por no haberme explicado mejor!!!, pero ya solucione el preoblema que tenia.
Pues como no se sabe cuantos campos de texto va a devolver la consulta, entonces lo que hice fue un campo de texto como arreglo, luego tome el valor del arreglo, y lo puse en una variable para que el pdf la tomara, aqui esta el codigo
Código PHP:
Ver original<center><table width="84%" border="1">
<tr>
<td bgcolor="#999999"><b><center><strong>MEDIOS USADOS</strong></center></b></td>
<td bgcolor="#999999"><center>
<strong> No.LOTE
</strong>
</center></td>
<td bgcolor="#999999"><b><center>RESULTADO</center></b></td>
</tr>
<?php
$Codigo=$_GET['codigo'];
echo $Codigo;
$analis=$_POST['No_Analisis'];
$sql2="select DISTINCT * FROM `medios` where `No.Analisis` = '$analis'";
?>
<tr>
<td><input name="medioss[]" type="text" value="<?php echo $filas2['Medios_Usados']; ?>" size="44" ></td>
<td><input name="mdios[]" type="text" value="<?php echo $filas2['No.Lote'];?>" size="30"> </td>
<td><input name="medios2[]" type="text" value="<?php echo $filas2['Resultado'];?>" size= "30"></td>
</tr>
<?php
}
?>
</table></center>
y en el pdf lo toma asi
Código PHP:
Ver original/*---------------------------- MEDIOS UTILIZADOS -------------------------------*/
foreach ($data24 as $actual)
foreach ($datamedios as $actual2)
foreach ($datamedios1 as $actual1)
foreach ($segundomedio as $segundomedio1)
foreach ($segundolote as $segundolote1)
$segundoresultado = array_slice($_POST['medios2'],1,1); foreach ($segundoresultado as $segundoresultado1)
asi lo llame en el pdf
Código PHP:
Ver original$this->Cell(60,5,'MEDIOS USADOS',1,0,'C');
$this->Cell(46,5,'LOTE No.',1,0,'C');
$this->Cell(46,5,'RESULTADO',1,0,'C');
$this->Ln();
$this->Cell(60,7,$actual,1,0,'C');
$this->Cell(46,7,$actual2,1,0,'C');
$this->Cell(46,7,$actual1,1,0,'C');
$this->Ln();
$this->Cell(60,7,$segundomedio1,1,0,'C');
$this->Cell(46,7,$segundolote1,1,0,'C');
$this->Cell(46,7,$segundoresultado1,1,0,'C');
$this->Ln();
y funciono