you are going to have to modify the include for line for header.php to reflect the directory structure in relation to the homelogin.php file.
I assume it should be something like this:
include "../template/header.php";
I am assuming you have directories like this:
http://www.certifyexpress.com/forum
http://www.certifyexpress.com/template
http://www.certifyexpress.com/win2kpro
Now, if what you really have is
http://www.certifyexpress.com/win2kpro/forum
Then, the include would be
include "../../template/header.php";
Amy (crossing fingers)