SMD asks that you validate your code using the W3C
Validator
In The PHP Code at the top of the file if you want to use HTML 4.01 Transitional replace the following lines of code:
<?php
require_once("/home/webcadet/public_html/mywcc/Connections/test.php");
display_header();
?>
With The Following:
<?php
require_once("/home/webcadet/public_html/mywcc/Connections/test.php");
display_header("html");
?>
And For The Footer:
<?php
display_footer();
?>
With The Following:
<?php
display_footer("html");
?>
If you have any questions about the validation process please ask a member of SMD. SMD reserves the right to ensure that pages are valid in accordance with W3C.
Where it says to input the header code place this
After You Have Recieved The Template VIA EMail only alter the html code inbetween the following comment tags:
< !-- DO NOT DELETE OR REMOVE ANY OF THE ABOVE CODE -->
< !-- ALTER BELOW DEPENDING ON PAGE -->
< !-- DO NOT START WITH < TABLE > AND DO NOT END WITH < /TABLE > -->
< !-- DO NOT CLOSE THE INITIAL TABLE THAT IS SET UP IN TEMPLATE -->
< !-- YOU MAY CREATE A NEW TABLE(S) WITHIN A < TR >< TD > AND < /TD >< /TR > -->
AND
< !-- END OF ACTUAL PAGE CODE -->
< !-- EDIT ABOVE THESE COMMENTS -->