ERROR function fetch_assoc()
Publicado por OSVALDO (22 intervenciones) el 04/10/2017 23:19:24
Hola amigos, espero esta vez me puedan ayudar con este código. Estoy usando FPDF para generar pdf y cuando genero el código para el while me da este error
Fatal error: Uncaught Error: Call to a member function fetch_assoc() on boolean in E:\xampp\htdocs\proy_hls\pdfht.php:101 Stack trace: #0 {main} thrown in E:\xampp\htdocs\proy_hls\pdfht.php on line 101
en donde la linea 101 es la del while, les pego el trozo del código.
extracto del php
<?php
...
acá los include, require y los llenado de los otros campos que no vienen de una consulta
...
$doc->Ln();
$doc->SetXY(15,95);
$doc->SetFillColor(232,232,232);
$doc->SetFont('Arial','B',8);
;
$doc->Cell(150,6,'Detalle',1,0,'C',1);
$doc->Cell(20,6,'Fecha',1,1,'C',1);
$doc->SetFont('Arial','B',7);
while($row = $resultado->fetch_assoc()) //linea que da error
{
$doc->Cell(150,6,utf8_decode($row['DET_PUB']),1,0,'C');
$doc->Cell(20,6,$row['FEC_DET_PUB'],1,0,'C');
}
$doc->Output();
?>
Fatal error: Uncaught Error: Call to a member function fetch_assoc() on boolean in E:\xampp\htdocs\proy_hls\pdfht.php:101 Stack trace: #0 {main} thrown in E:\xampp\htdocs\proy_hls\pdfht.php on line 101
en donde la linea 101 es la del while, les pego el trozo del código.
extracto del php
<?php
...
acá los include, require y los llenado de los otros campos que no vienen de una consulta
...
$doc->Ln();
$doc->SetXY(15,95);
$doc->SetFillColor(232,232,232);
$doc->SetFont('Arial','B',8);
;
$doc->Cell(150,6,'Detalle',1,0,'C',1);
$doc->Cell(20,6,'Fecha',1,1,'C',1);
$doc->SetFont('Arial','B',7);
while($row = $resultado->fetch_assoc()) //linea que da error
{
$doc->Cell(150,6,utf8_decode($row['DET_PUB']),1,0,'C');
$doc->Cell(20,6,$row['FEC_DET_PUB'],1,0,'C');
}
$doc->Output();
?>
Valora esta pregunta
0