Estuve haciendo esto en el mismo script puse esto:
Código PHP:
<?php
include ('PHPPaging.lib.php');
include('pdf/class.ezpdf.php');
$con = mysql_connect("localhost","xxx","xxx") or die (mysql_error());
mysql_select_db("bd_xxxx",$con) or die (mysql_error());
// es aqui donde ejecuta la consulta para que me muestre los resultados en la pantalla.
$paging->agregarConsulta("SELECT * FROM jugadores Where (nombre='$nombre' or '$nombre'='') and (paterno='$paterno' or '$paterno'='') and (materno='$materno' or '$materno'='') and (registro_fbf='$registro_fbf' or '$registro_fbf'='') and (ci='$ci' or '$ci'='') and (edad='$edad' or '$edad'='') and (fecha_n='$fecha_n' or '$fecha_n'='') and (categoria='$categoria' or '$categoria'='') and (club='$club' or '$club'='') and (estado='$estado' or '$estado'='') and (lugar='$lugar_n' or '$lugar_n'='') and (nacionalidad='$nacionalidad' or '$nacionalidad'='') ",$server_link);
$paging->porPagina(20);
while($row = $paging->fetchResultado()) {
echo "<tr>";
echo "<td>".$row['ci']."</td>";
echo "<td align=left>".$row['nombre']."</td>";
echo "<td align=left>".$row['paterno']."</td>";
echo "<td align=left>".$row['materno']."</td>";
echo "<td>".$row['fecha_n']."</td>";
echo "<td>".$row['nacionalidad']."</td>";
echo "<td align=left>".$row['club']."</td>";
echo "<td>".$row['categoria']."</td>";
// para el PDF.
$pdf = & new Cezpdf('letter','landscape');
$pdf->selectFont('pdf/fonts/Helvetica');
$pdf->ezSetCmMargins(1,1,1.5,1.5);// margenes
$pdf->ezStartPageNumbers(500,18,10,'','{PAGENUM} de {TOTALPAGENUM}',1);
$all = $pdf->openObject();
$pdf->saveState();
$pdf->setStrokeColor(0,0,0,1);
$pdf->line(20,30,750,30);
$pdf->line(20,585,750,585);
$pdf->addText(20,590,10,'Asociacion Chuquisaqueña de Futbol *** ACHF *** ');
$pdf->addText(650,590,10,'Detalle de Jugador(res)');
$pdf->addText(20,18,10,'Dirección: Calle Junin 744 - Telfs. 64-51271- 64-55460 - FAX.(04) 64-55460','Pagina');
$pdf->restoreState();
$pdf->closeObject();
// termina las lineas
$pdf->addObject($all,'all');
$queEmp =("SELECT * FROM jugadores Where (nombre='$nombre' or '$nombre'='') and (paterno='$paterno' or '$paterno'='') and (materno='$materno' or '$materno'='') and (registro_fbf='$registro_fbf' or '$registro_fbf'='') and (ci='$ci' or '$ci'='') and (edad='$edad' or '$edad'='') and (fecha_n='$fecha_n' or '$fecha_n'='') and (categoria='$categoria' or '$categoria'='') and (club='$club' or '$club'='') and (estado='$estado' or '$estado'='') and (lugar='$lugar_n' or '$lugar_n'='') and (nacionalidad='$nacionalidad' or '$nacionalidad'='') ");
// $queEmp -> agregarConsulta;
$resEmp = mysql_query($queEmp, $con) or die(mysql_error());
$totEmp = mysql_num_rows($resEmp);
// creo un while para generar la tabla con sus campos
$ixx = 0;
while($datatmp = mysql_fetch_assoc($resEmp)) {
$ixx = $ixx+1;
$data[] = array_merge($datatmp, array('num'=>$ixx));
$titles = array(
'num'=>'<b>Nº</b>',
'nombre'=>'<b>Nombres</b>',
'paterno'=>'<b>Ape. Paterno</b>',
'materno'=>'<b>Ape. Materno</b>',
'categoria'=>'<b>Categoria </b>',
'nacionalidad'=>'<b>Nacionalidad </b>',
'club'=>'<b>Club</b>',
'ci'=>'<b>CI</b>'
);
$options = array(
'shadeCol'=>array(0.9,0.9,0.9),
'xOrientation'=>'center',
'width'=>700
);
}
$txttit = "<b>BICENTENARIO DEL PRIMER GRITO DE LIBERTAD EN AMERICA 1809-2009\n SUCRE-BOLIVIA </b>\n";
$pdf->ezText($txttit, 12, array(justification=>center));
$pdf->ezTable($data, $titles, '', $options);
$pdf->ezText("\n\n\n", 18);
$pdf->ezText("<b>Fecha:</b> ".date("d/m/Y"), 5, array(justification=>left));
$pdf->ezText("<b>Hora:</b> ".date("H:i:s")."\n\n",5, array(justification=>left));
$pdf->ezStream();
?>
Copie la misma consulta tanto de busqueda para generar mi pdf pero ahora cuando pongo imprimir me vota esto
Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\proyecto_cisco\modulos\consultas\v istas\busqueda_avanzada.html.php:20) in C:\xampp\php\PEAR\class.pdf.php on line 1916
Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\proyecto_cisco\modulos\consultas\v istas\busqueda_avanzada.html.php:20) in C:\xampp\php\PEAR\class.pdf.php on line 1917
Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\proyecto_cisco\modulos\consultas\v istas\busqueda_avanzada.html.php:20) in C:\xampp\php\PEAR\class.pdf.php on line 1919
%PDF-1.3 %âãÏÓ 1 0 obj << /Type /Catalog
Y mucha mas basura y no me genera el pdf sino me muestra en la pantalla esto alguien sabe por favor en donde puede estar mi error YA QUE NO PUEDO ASIGNAR EL VALOR DE ESTA CONSULTA $paging->agregarConsulta("ETC ETC") A UNA VARIABLE PQ CUANDO PASA A MOSTRARME LOS RESULTADOS DE LA BUSQUEDA ME MUESTRA EL MENSAJE DE NO EXISTE CONSULTA ???