To post your query Click Here
how do you clear 'headers already sent' error
I have been testing various pages and have used the header() function, I now get this message
Warning: Cannot modify header information - headers already sent by (output started at /home/kmandle/public_html/properties/login.php:2) in /home/kmandle/public_html/properties/login.php on line 48
Simply write ob_start(); at the top of the php page.
How to call one php file in another?
you can either use include function :
include("filename.php"); or
require_once("filename.php");
|