Tengo el siguiente problema:
Necesito crear tantos archivos (documentos) pdf como numeros telefonicos tenga, es decir para cada numero telefonico debe crearse un PDF, he intentado pero solo consigo crear una pagina por numero telefonico.
Aqui les dejo el codigo:
Código PHP:
class PDF extends FPDF
{
//Cargar los datos
//Una tabla más completa
function ImprovedTable($header)
{
//Anchuras de las columnas
$w=array(12,25,20,25,35,20,10,20);
//Cabeceras
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,$header[$i],1,0,'C');
$this->Ln();
//Datos
$consultadel2= "SELECT * FROM organizar_datos GROUP BY `strSubCta`";
$resultadodel2= mysql_query($consultadel2);
while ($filadel2= mysql_fetch_array($resultadodel2))
{
$consultadel= "SELECT * FROM organizar_datos where strSubCta=$filadel2[2] and strCallType='R' order by strSubCta";
$resultadodel= mysql_query($consultadel);
while ($filadel= mysql_fetch_array($resultadodel))
{
$this->Cell($w[0],6,$filadel[0],'LR');
$this->Cell($w[1],6,$filadel[6],'LR');
$this->Cell($w[2],6,$filadel[7],'LR');
$this->Cell($w[3],6,$filadel[8],'LR');
$this->Cell($w[4],6,$filadel[9],'LR');
$this->Cell($w[5],6,$filadel[10],'LR');
$this->Cell($w[6],6,$filadel[11],'LR');
$this->Cell($w[7],6,$filadel[12],'LR');
$this->Ln();
}
}
//Línea de cierre
$this->Cell(array_sum($w),0,'','T');
}
}
$pdf=new PDF();
//Títulos de las columnas
$header=array('Nº','Fecha','Hora','Numero','Destino','Duracion','Tarifa','Monto Bs.');
//Carga de datos
$pdf->SetFont('Arial','',12);
$pdf->AddPage();
$pdf->ImprovedTable($header);
$pdf->Output("PDF/hola.pdf");
Código PHP:
$consultadel2= "SELECT * FROM organizar_datos GROUP BY `strSubCta`";
$resultadodel2= mysql_query($consultadel2);
while ($filadel2= mysql_fetch_array($resultadodel2))
{
}
Código PHP:
$consultadel= "SELECT * FROM organizar_datos where strSubCta=$filadel2[2] and strCallType='R' order by strSubCta";
$resultadodel= mysql_query($consultadel);
while ($filadel= mysql_fetch_array($resultadodel))
{
$this->Cell($w[0],6,$filadel[0],'LR');
$this->Cell($w[1],6,$filadel[6],'LR');
$this->Cell($w[2],6,$filadel[7],'LR');
$this->Cell($w[3],6,$filadel[8],'LR');
$this->Cell($w[4],6,$filadel[9],'LR');
$this->Cell($w[5],6,$filadel[10],'LR');
$this->Cell($w[6],6,$filadel[11],'LR');
$this->Cell($w[7],6,$filadel[12],'LR');
$this->Ln();
}
Saludos cordiales gracias de antemano.