[ PHPXref.com ] [ Generated: Sun Jul 20 18:53:27 2008 ] [ myPHPNuke 1.8.8_8 ]
[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/ -> chat.php (source)

   1  <?php
   2  
   3  if ( ! @include_once ( './mainfile.php' ) ) { exit( '!! INCLUDE ERROR. ACCESS DENIED !!' ); }
   4  error_reporting( _E_VALUE );
   5  
   6  
   7  /* vim: set expandtab tabstop=4 shiftwidth=4: */
   8  // +----------------------------------------------------------------------+
   9  // | myPHPNuke Version 188_8 RC2                                          |
  10  // +----------------------------------------------------------------------+
  11  // | License: GNU/GPL - http://www.gnu.org/copyleft/gpl.html              |
  12  // +----------------------------------------------------------------------+
  13  // | Support: http://myphpnuke.com/                                       |
  14  // +----------------------------------------------------------------------+
  15  // | Author: myPHPNuke Dev Team                                           |
  16  // +----------------------------------------------------------------------+
  17  // | Copyright: © 2001-2004 myPHPNuke Dev Team                            |
  18  // +----------------------------------------------------------------------+
  19  // $Id: chat.php,v 1.7.2.3 2004/08/27 15:51:16 kirilt Exp $
  20  
  21  
  22  
  23  
  24  ######################################################################
  25  # ChatBox II
  26  # =============
  27  #
  28  # Copyright (C) 2001 by Gerard Samuel (trini0@optonline.net)
  29  #
  30  # Based on code found in myPHPNuke
  31  # Ingo van Peeren (ingo@beginner-ag.de)
  32  # Michael Yarbrough (http://www.comediccadavers.com/)
  33  ######################################################################
  34  # This program is free software. You can redistribute it and/or modify
  35  # it under the terms of the GNU General Public License as published by
  36  # the Free Software Foundation; either version 2 of the License.
  37  ######################################################################
  38  
  39  echo "<!DOCTYPE html
  40      PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"
  41      \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
  42  
  43  echo "<html id='chatframe'>\n";
  44  
  45      echo "<head>\n";
  46  
  47      echo "<title>$sitename&nbsp;" . translate( "Chat" ) . "</title>\n";
  48  
  49      echo "<meta http-equiv=\"content-type\" content=\"text/html; charset=ISO-8859-1\" />\n";
  50  
  51      echo "</head>\n";
  52  
  53          echo "<frameset rows='13%,67%,20%' border='0'>\n";
  54              echo "<frame src='chatheader.php' frameborder='0' name='header' noresize scrolling='no'>\n";
  55                  echo "<frameset cols='80%,20%' border='0'>\n";
  56                      echo "<frame src='chattop.php' name='output' frameborder='1' noresize>\n";
  57                      echo "<frame src='chatuser.php' name='user' frameborder='0' noresize>\n";
  58                  echo "</frameset>\n";
  59              echo "<frame src='chatinput.php' name='input' frameborder='0' noresize scrolling='no'>\n";
  60          echo "</frameset>\n";
  61  
  62  echo "</html>\n";
  63  
  64  ?>


[ Powered by PHPXref - Served by Debian GNU/Linux ]