Help with PHP Headers
MY issue is that I created a PHP page counter that is a PNG image.
Thats two lines of the file are as follows.
header('Content-Type: image/png');
ImagePNG($im);
Then I am making another PHP page that I am trying to import this counter into and I keep getting the following error.
Warning: Cannot modify header information - headers already sent by (output started at -file location- in line 41.
Any ideas on how to resolve this issue. It is for a class so I am restricted to what exactly I can do, like the counter MUST be a PNG image.
Thanks~
|