|
Re: PHP Session Variables in a form
ob_start() needs to go before the DOCTYPE selector, but ob_end_flush() can go anywhere. Personally, I typically place it just before my opening <form> tag. (If you're going to display a form, you're truly ready to output content to the page, right?) This works well for me.
|