home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / akce / web / phptriad / phptriad2-2-1.exe / htdocs / phpmyadmin / footer.inc.php < prev    next >
PHP Script  |  2002-01-06  |  535b  |  32 lines

  1. <?php
  2. /* $Id: footer.inc.php,v 1.13 2001/12/16 14:43:22 loic1 Exp $ */
  3.  
  4.  
  5. // In this file you may add PHP or HTML statements that will be used to define
  6. // the footer for phpMyAdmin pages.
  7.  
  8. /**
  9.  * Close MySql non-persistent connections
  10.  */
  11. if (isset($dbh) && $dbh) {
  12.     @mysql_close($dbh);
  13. }
  14. if (isset($userlink) && $userlink) {
  15.     @mysql_close($userlink);
  16. }
  17. ?>
  18.  
  19. </body>
  20.  
  21. </html>
  22. <?php
  23.  
  24. /**
  25.  * Sends bufferized data
  26.  */
  27. if (isset($cfgOBGzip) && $cfgOBGzip
  28.     && isset($ob_mode) && $ob_mode) {
  29.      PMA_outBufferPost($ob_mode);
  30. }
  31. ?> 
  32.