<?
# PHP News Reader
# Copyright (C) 2001-2007 Shen Cheng-Da
#
# 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.
session_start();
$to_language = strtolower($_GET['language']);
setcookie( 'cookie_language', $to_language, time()+86400*30 );
$_SESSION['session_language'] = $to_language;
include('language.inc.php');
#$to_charset = $lang_coding[$to_language];
#$_SESSION['session_charset'] = $to_charset;
$referal = 'index.php';
$qstr = $_SERVER['QUERY_STRING'];
$vars = explode( '&', $qstr );
foreach( $vars as $var ) {
$x = explode( '=', $var );
if( $x[0] == 'from' )
$referal = rawurldecode($x[1]);
}
//$referal = $_GET['from'];
$lang_name = $lang_option[$to_language];
//if( $referal == '' )
// $referal = 'index.php';
//header( "Location: $referal" );
echo <<<EOH
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV=REFRESH CONTENT="0; URL=$referal">
<STYLE>
body { font-size: 12px; color: black; background: #EEEEFF; font-family: arial }
a { text-decoration:none; color: blue }
a:visited { color: blue }
a:hover { text-decoration:underline; color:red }
hr { height: 1pt; color: #8080A0 }
</STYLE>
</head>
<body>
<center>
<p>
<br />
<br />
<font size=3 face=Georgia>
Changing Interface Language to <b>$lang_name</b> ...
</font>
</center>
</body>
</html>
EOH;
exit;
?>