hi guys, i am confused abt ob_start(); i tried the docs from php and other website.. but still its not clear for me...plz anyone try to explain me in a good manner.. along with an example...
ob_start() output buffer, which allows you to send headers. You have to place ob_start() function beginning of the line no newline or space.<?phpob_start();echo "Welcome";header("Location:1.html");?>