0

嘿,我有问题。

这是我的代码:

<?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

4

1 回答 1

0

也许你的意思是

if ($_GET['page'] == 'themes/'.$theme.'/index'){
// ?
}else{
// ?
}
于 2013-11-03T00:05:34.950 回答