when i attempt to access my php pages at: http://www.example.com/subexample/php/php_pages/registration_site/index.php everytime i try to submit a form or click on a new page nothing loads until i hit refresh. this does not happen with netscape, only with internet explorer, and it only happens on my machine, not on anybody else's machine.
i can't program if i can't view my own pages without refreshing all the time. has anyone else had this problem? is there a configuration problem with my browser??
Might need to delete your browser cache.
nope, i tried resetting all browser settings to defaults and deleting temp files and cache, didn't do it.
Are you using any Output Buffering functions like ob_start() ?
why yes i do! do you think this is the problem? if so, how come it only happens on my machine and no one else's? any idea how i can resolve the problem?
header("Cache-Control:no-cache");
nope, header("Cache-Control:no-cache"); didn't do it
I used to have a problem with Output Buffering where my pages would not load the first time until I hit refresh. What function are you using at the end of output/end of OB?
i am using: ob_end_flush();
but if that is the problem, why would the problem only occur on my IE and not on anyone else's machine?
That used to be my problem? Did you put ob_start() before session_start() or any functions that require to be called before headers?