Hi,
I have an image I want to display in an HTML table, the table being in my PHP file. I want the image to show as soon as the PHP file is called from an HTML form, and I want the image displayed at the top of the page (so I have put it at the top of my PHP file).
In other words, the image should be displayed in the browser before the PHP code is done processing (i.e. it is displayed while the PHP is being processed, instead of waiting for it to finish processing and then display).
As it is now, the image doesn't display until the PHP file has been 100% processed.
How can I achieve this?
Thanks.