……
2.Main.php
[php]<?php
if(!defined("IN_WEB")) die("Access Denied!");
require_once("head.php");
$smarty->display("index.htm");
?>
[/php]如果我改成2.Main.php
[php]<?php
if(!defined("IN_WEB")) die("Access Denied!");
require_once("head.php");
echo "========";
$smarty->display("index.htm");
?>哪么 除了 头部文件外 其他的什么也不读取……  
[/php]