Hi:
Have an application that is an endless loop structured something like this:
initialize
|
|
start loopa (infinite)
|
|
start loopb (infinite and conditional)
|
|
If event occurs terminate loopb
else redo loopb
|
|
imagepng($image);
imagedestroy($image);
|
|
redo loopa (forever)
The application executes properly. What does not happen however, is that the
graphics image is never displayed. If instead of making loopa an infinite loop
and execution is allowed to terminate and the ?> tag is executed then the graphics
image is displayed.
This same structure, if instead of attempting to output a graphics image, outputs
an echo (or similar) statement then it works as expected.
I have tried many different things to try to coax the graphics image to output
but so far have not found any resolution and I have also failed to find anything
on the web about this.
At this point, I am using apache2 webserver, php 4.3 in local mode with firefox and i.e.
browsers and windows op system.
Since the application depends on continous operation within the loop structures
rather than just a simple single pass I am soliciting assistance from those
more versed in this area.
Thanks in advance,
Bob Downs