Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi all I am generating Ezpdf reports and this is my code include 'reports/libraries/cezpdf.php'; $doc = new Cezpdf(); $mysql = mysql_query("SELECT * FROM familypreports WHERE date >= '$startDate' AND date <= '$endDate'");

    $i = 0;
     while($row = mysql_fetch_array($mysql)){
                 $i = $i + 1;
                 $mydata[] = array('no'=>$i,'pillsClients'=>$row['pillsClients'],'maleCondoms'=>$row['maleCondoms'],'raha'=>$row['raha'],
                'femaleCondoms'=>$row['femaleCondoms'],'formTablets'=>$row['formTablets']);

$col_names = array('no'=>'#','pillsClients'=>'Pills Clients','maleCondoms'=>'Male Condoms','raha'=>'RAHA Sales','femaleCondoms'=>'Female Condoms','formTablets'=>'Form Tablets');
             }

$doc->ezStartPageNumbers(320, 15, 8,"","{PAGENUM} of {TOTALPAGENUM} page(s)");
//$this->cezpdf->ezSetDy(-30);
$doc->ezTable($mydata, $col_names,'ITEMS LIST as at {'.Date('d-M-Y').'}', array('width'=>550,'cellspacing'=>'4'));
$doc->ezStream();

//

But i get this error///

%PDF-1.3 %âãÏÓ 1 0 obj << /Type /Catalog /Outlines 2 0 R /Pages 3 0 R >> endobj 2 0 obj << /Type /Outlines /Count 0 >> endobj 3 0 obj << /Type /Pages /Kids [6 0 R ] /Count 1 /Resources << /ProcSet 4 0 R /Font << /F1 8 0 R >> >> /MediaBox [0.000 0.000 595.280 841.890] >> endobj 4 0 obj [/PDF /Text ] endobj 5 0 obj << /Creator (R and OS php pdf writer, http://www.ros.co.nz) /CreationDate (D:20120626) >> endobj 6 0 obj << /Type /Page /Parent 3 0 R /Contents [ 7 0 R 9 0 R ] >> endobj 7 0 obj << /Filter /FlateDecode /Length 236 >> stream xœuлnÂ0à=OñK]`Àõ-¶)"-U‘Zâ‘ÅQ9IKèTõÝk%Dxh–#Ù:ß¹e”PJ‘Æó1£ÄtÏ[Ü>fœçDŠøC„ °{Ü,BØ0YÛÕ¦Ä˺´p-Ü?\Íž¿ë§ŒÿNa?°²}%¢$…6Šˆ¹ ©¡Î]’jr’k1šúz ¡Å2œ|}iÆ´"RÎGÝÆeSï›*e<2­Æ'Û.ž(£M‘ÐýéÆPá«ÿ»I­ãAÇ—+šsëÞƒ¿íö•eoý¤´»!Ë»ÞWjÊÐÀðéŽ~7iwÓ+ÿíþtZ endstream endobj 8 0 obj << /Type /Font /Subtype /Type1 /Name /F1 /BaseFont /Helvetica /Encoding /WinAnsiEncoding >> endobj 9 0 obj << /Filter /FlateDecode /Length 204 >> stream xœÐ=Â0à=§ð‹±óçtEvÈ‚™ëšÖ˜J•X2<}qœçö¼Ç D"2¨WØ2ÔÀ†·Pïp¨®Ñ’0IX¥ƒ¡,cV-뛕¼¾‚µA‰þ³QCYßWmiÏóÉ1¼KïfHÁæ m!©À.Îê­(š‹X¸÷aFM‰e¾…cÊ4±,äÔ[P¦‰eQ|/@™&†}>šòò§š,dk€°ü$#œî–€£6%bó€™ô}ò †É‡Ü endstream endobj xref 0 10 0000000000 65535 f 0000000015 00000 n 0000000080 00000 n 0000000126 00000 n 0000000280 00000 n 0000000309 00000 n 0000000414 00000 n 0000000487 00000 n 0000000796 00000 n 0000000903 00000 n trailer << /Size 10 /Root 1 0 R /Info 5 0 R >> startxref 1180 %%EOF

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.