The file that does all the processing and query calling is from an include. Currently I am trying along these lines from things I have read:
index.php
Code: Select all
include "header.php"
include "content.php"
include "footer.phpCode: Select all
ob_start();
//output processing image
echo str_pad('',4096)."\n";
ob_flush();
flush();
ob_end_flush();
//call to the query on a remote machineIs there something I am doing wrong that this won't output properly? I can see most of the header is output to the browser, but never can get the processing image displayed. The lucky thing is I am only required to have this working for IE6/7 and FF2 so buffer output from the browser is less of an issue as long as the processing image is displayed.