<?php
/*
* Harris WapChat
*
* http://www.successkid.com
*
* Harris WapChat is a wap chat application for personal and corporate used.
* Visit {@link http://www.successkid.com} for more info.
* Copyright (C) 2005 Harris Yusuf Arifin
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @author Harris Yusuf Arifin <[email protected]>
* @copyright Copyright 2005, Harris Yusuf Arifin
*
* Please support this software by send DONATION to E-GOLD account :
* E-gold Number : 827550
* E-gold Name : earthweb egold
*/
$sesFileCobrander = basename($PHP_SELF);
$pathCobrander = $_SERVER[SERVER_NAME].$_SERVER[REQUEST_URI];
if (strpos($pathCobrander ,"?") > 0) {
$getPos=strpos($pathCobrander ,"?");
$sesPathCobrander = substr($pathCobrander,0,$getPos);
} else {
$sesPathCobrander = $pathCobrander;
}
if ($sesPathLang == "") {
$sesPathLang = "en";
}
include("$sysFileDir".FILE_OPEN_DATABASE);
include("$sysFileDir".FILE_FUNCTIONS);
include("$sysFileDir".FILE_DISPLAY_MODUL);
include($sysFileDir."langtxt/lang-".$sesPathLang.".php");
// remove old messages
cekExpMsg($sesExpTime,$sesCobID);
if ($sesUserAgent == "11")
{
//should be "xhtml" but not support yet :D
$sesPathBrowser="wml";
} else {
$sesPathBrowser="wml";
}
if ($sesLanguages == "ch")
{
//chinese charset. Save translated language to lang-ch.php in folder langtxt
$sesCharset = $chineseCharset;
} else {
$sesCharset = $utfCharset;
}
if ( (!empty($us)) && (!empty($pa)) )
{
include($sysFileDir.$sesPathBrowser."/pageCekpass.php");
} else {
include($sysFileDir.$sesPathBrowser."/startPage.php");
}
?>