If you have tons of programs installed on your computer and most of them start up automatically in the background when Windows starts, then sooner or later your PC performance will suffer. Because the more programs that are loaded in Windows, the worse your computer performs.
Archive for August, 2012
How to stop programs from automatically starting up in Windows
How to remove “headers already sent” error in PHP
This error occurs mainly when you are working PHP in Linux Servers.
Method 1
The "headers already sent" error is usually caused by having white space before or after the opening and closing PHP tags (<?php . . . ?>).
Method 2
In top of page put
ob_start();
In bottom of page put
ob_flush();