открытие файлов, помогите!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
<head>
<title>PHP</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
</head>
<?php
$lang = _get ["lang"];
$text = _get ["text"];
?>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="89">
<tr>
<td>
<div align="center">
<pre><font color="#FFCC33" size="5" face="Verdana, Arial, Helvetica, sans-serif">HEADER</pre>
</div>
</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="257">
<tr>
<td width="28%">
<?php
switch($lang)
{
case "rus" include ("rus.php");
case "eng" include ("eng.php");
}
?>
</td>
<td width="72%">
<?php
switch($text)
{
case "main" include ("main.php");
case "products" include ("products.php");
}
?>
</td>
</tr>
</table>
</body>
</html>
вроде все правильно, а не работает каза !!!!
вызываю так http//www.bla-bla.ru/index.php?lang=rus&text=main
Цитата:
On 2002-02-24 1441, Anonymous wrote
вроде все правильно, а не работает каза !!!!
вызываю так http//www.bla-bla.ru/index.php?lang=rus&text=main
"Читайте доки - они rulez!" (c) ....
<?php
$lang = _get ["lang"];
$text = _get ["text"];
?>
Вот здесь - 2 ошибки. Должно быть
<?php
$lang = $_GET['lang'];
$text = $_GET['text'];
?>
Кстати, будет работать только в 4.1.0 и выше, для более старых версий
<?php
$lang = $HTTP_GET_VARS['lang'];
$text = $HTTP_GET_VARS['text'];
?>
Пошамань с fopen() и fclose.