I save some HTML in a file name searchbox.php3, i want it to be loaded(intergrated) when my other PHP pages are loaded. HOw can i do that? do i use echo or print?
Thank You
just use
include("searchbox.php3");
Thanks!