cant summit bug report due to solve problem
[email protected] Sat, 8 Jan 2011 03:17:51 +0000 (UTC)
| Newsgroups | php.pear.webmaster |
|---|---|
| Message-ID | <342533951.1006060.1294456671470.JavaMail.root@sz0131a.westchester.pa.mail.comcast.net> |
I've been trying to summit a bug report but cant get past the solve problem. It asks to solve the problem 36+=? I don't know how to solve a problem like that. Try 2+2 I can give your that answer. Any way I would like to contribute to the project but I don't know what 36+=? is so I cant summit the bug report. Here is my bug report if your are interested. [email protected] 1.1.1 stable Image_Barcode Bug Ubuntu 9.10 Warning: Cannot modify header information Error when calling Image_Barcode::draw and using other php code as showed in the code sample below. If Image_Barcode::draw is called with no other php or html code above it. It works. If php or html code is written below the Image_Barcode::draw it will not run it and only displays the barcode and does not display html on page. The bottom line is you can create a barcode but cant do any thing with it the added php code brakes it or is not displayed simply remove the Image_Barcode::draw and the extra code works. code below does not work <?php print "<html><body>"; require_once('Image/Barcode.php'); Image_Barcode::draw('2133516541', 'Code39', 'png'); print "<script type='text/javascript'>onLoad=window.print()</script>"; print "</body></html>"; ?> code below works. <?php require_once('Image/Barcode.php'); Image_Barcode::draw('2133516541', 'Code39', 'png'); ?> Warning: Cannot modify header information - headers already sent by (output started at /var/www/createbarcode.php:2) in /usr/share/php/Image/Barcode.php on line 104