In php how do you do add head and footer? How do you add html table and image?
include("fileasheader.php"); --- html stuff-- include("fileasfooter.php");
//head <? include("headfile.php"); ?> //here u can write html code,such as: <img src="good.gif"> <table border=0></table> <B>hello</B> //then is the foot <? include("footfile.php"); ?>
//notice the path of the files.
Thank you for helping.🙂