嘿,我遇到了问题。
这是我的代码:
<?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
失败。
答案 0 :(得分:0)
也许你的意思是
if ($_GET['page'] == 'themes/'.$theme.'/index'){
// ?
}else{
// ?
}