无法连接$ GET ['page']

时间:2013-11-03 00:01:48

标签: php

嘿,我遇到了问题。

这是我的代码:

<?php
    define('IN_INDEX', 1);
    include ('inc.php');
    $GET['page'] == ('themes/<?php echo $theme; ?>/index') or 
    die ("Unable to connect");
?>

以前,此代码从配置中获取$theme变量,inc.php中需要该变量,然后显示主题的索引,但现在它以Unable to connect失败。

1 个答案:

答案 0 :(得分:0)

也许你的意思是

if ($_GET['page'] == 'themes/'.$theme.'/index'){
// ?
}else{
// ?
}