PHP Classes

File: phpsecureweb/footer.inc.php

Recommend this page to a friend!
  Classes of Bulent Tezcan   phpsecureweb   phpsecureweb/footer.inc.php   Download  
File: phpsecureweb/footer.inc.php
Role: Auxiliary script
Content type: text/plain
Description: displays the footer
Class: phpsecureweb
Allow users certain rights, login with password.
Author: By
Last change:
Date: 22 years ago
Size: 473 bytes
 

Contents

Class file image Download
<?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;

?>