Posts: 74
Threads: 22
Joined: Oct 2013
Hello,
I already have a line ob_start("ob_gzhandler"); - do I still also need the ob_start(); line?
Thx
Posts: 74
Threads: 22
Joined: Oct 2013
Just looking into this trying to understand it, is there any added benefit in placing ob_flush(); ob_clean();ob_end_flush(); at the end of the file?
Thank you
Posts: 2,894
Threads: 59
Joined: Jun 2010
Hi,
The ob_start(); line is only used for the 'Remember my form details' feature. So if the feature is working (i.e. successfully remembering the form details) then you don't need it twice.
Regarding the added benefit of placing those lines at the end of the file, I don't believe they are necessary as if they're not there then PHP will automatically do those things anyway.
Have
you completed
the interview?
Posts: 74
Threads: 22
Joined: Oct 2013
Thanks Steven, appreciated