I'd like to include a header.php page to serve as the top part of every php page I make. I'm aware that I can use include("header.php"), but I have a question...
Is include() the right way to go about it?
In ASP, I use the simple
VB Code:
<!--#include file="topinclude.asp"-->
Is it better to use this, or include()?
Any better ways?
Tx.
