包含文件没有在echo查询中显示

时间:2017-11-14 11:13:08

标签: php mysql

为什么我的收录文件没有显示?即使主题是读取目录,如果我没有放入内部回音它是否正常工作..如何解决这个问题?

 <?php
 require_once('config.php');
 blalal...
 echo "<?php include('theme/" . $row["themes"]. "/editor/index.php'); ?>"; } } else { echo ""; } $conn->close(); ?>

1 个答案:

答案 0 :(得分:0)

您应该包含以下文件:

<?php
require_once('config.php');

if () {
    if () {

        include('theme/' . $row["themes"]. '/editor/index.php');

    } 
} else { 

    echo ""; 

} 

$conn->close(); 

?>