Hi, I mentioned this briefly on one of the other boards but thought I'd start a thread for it here. I have a php script that creates a new png image which requires setting an image/png header. Of course, if I try to include any html or php echo output in the file I receive the 'Cannot modify header information' error. My question is - is there any way at all around this? I would really rather not have to use iframes and would love to have the png and the html in the same file. Is it possible?

Thanks....

    Why dont u just same the image?
    imagepng
    And output it in your html page:

    <img src="path/to/you/image.png" />
      Write a Reply...