亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

include_php ??

include_php ??:

include_php? ??? ???? PHP ??? ???? ??? ?? ??? ??? ???? ?? ?????.

?? ??, ???? ???? ???? ??????? ??? ?????. ??? ??? ???? ? ???? ?????, PHP? ??? ???? ??? ? ????. ??? ??? ???? ??? ???

? ????, ??? ?? ??? PHP ????? ???? ????. ??? ??? ?????? ?????? ??? ????? ???? ??? ? ???? ???? ???? ? ????.

php ??? ????? ?? ? ?????? ????? ? ?? ?????. ? ???? ??? ?? ????? ?? ??? ? ????. ??? false? ???? ??? ??? ??? ??? ?? ?????.

?? ??? ???? ? ??? ???? ?? ??? ???? PHP ??? ??? ?????. ??? PHP ??? ??? ?? ???? ??? ???.

??? PHP ???? $this? ?? smarty ??? ??? ? ????.

load_nav.php:

<?php
// load in variables from a mysql db and assign them to the template
// 從mysql數(shù)據(jù)庫中取得數(shù)據(jù),將數(shù)據(jù)賦給模板變量require_once("MySQL.class.php"); 
 $sql = new MySQL; 
 $sql->query("select * from site_nav_sections order by name",SQL_ALL); 
 $this->assign('sections',$sql->record);
index.tpl:

{* absolute path, or relative to $trusted_dir *}
{* 絕對路徑或 $trusted_dir 的相對路徑 *}
{include_php file="/path/to/load_nav.php"}
{foreach item="curr_section" from=$sections}
<a href="{$curr_section.url}">{$curr_section.name}</a><br>
{/foreach}

???? ??
||
<?php echo "include_php函數(shù)";