<?php
/*
* @author Bulent Tezcan. bulent@greenpepper.ca
*/
include_once "securityConfig.inc.php";
$tableClass = $_SESSION["CSS"]."FormTABLE";
$DataTD = $_SESSION["CSS"]."DataTD";
echo <<<HTML
<table class="$tableClass" cellspacing="1" cellpadding="4" align="center">
<tr>
<td class="$DataTD">This is coming from <b><i>footer.inc.php.</i></b> You need to modify it to integrate to your site design.</td>
</tr>
</table>
</body>
</html>
HTML;
?>
|