smarty模板中传值给php变量 从而实现不同的循环值
请问我现在在smarty中这样定义<--{assignvar="foo"value="6"}-->定义foo的值为6那么我在php文件中怎么才能得到这个foo的值从而进行...
请问 我现在在smarty中这样定义<--{assign var="foo" value="6"}--> 定义foo的值为6 那么我在php文件中怎么才能得到这个foo的值从而进行查询?2.php代码<?php
define("WOB","smarty/libs/");
include(WOB."Smarty.class.php");
$smarty = new Smarty;//设置各个目录的路径,这里是安装的重点
$smarty->template_dir ="smarty/templates/templates";
$smarty->compile_dir ="smarty/templates/templates_c";
$smarty->config_dir = "smarty/templates/config";
$smarty->cache_dir ="smarty/templates/cache";
$smarty->left_delimiter="<--{";
$smarty->right_delimiter="}-->";
$smarty->caching = false;
$foo = $smarty->get_template_vars('foo');
$sql="select * from cct where id='".$foo."'";
$smarty->assign("name",$foo[0]);
$smarty->assign("namer",$foo[1]);
$content=$smarty->fetch("2.tpl");
$title="./2.html";
MfileText($title,$content);
function MfileText($Mtitle,$Content)
{
if(!file_exists(dirname($Mtitle)))
{
if(!@mkdir(dirname($Mtitle),0777))
{
die($Mtitle."false");
}
}
if(!$tp=fopen($Mtitle,"w"))
{
echo "false";
return false;
}
if(!fwrite($tp,$Content))
{
echo "file write false";
fclose($tp);
return false;
}
fclose($tp);
chmod($Mtitle,0666);
}
?>
2.tpl代码:
<--{assign var="foo" value="6"}-->
<--{$name}--><br />
<--{$namer}-->
上面的2.php代码是调用2.tpl这个模板 从而得到foo=6实现查询$sql="select * from cct where id='".$foo."'";这句查询,就是不同的foo变量实现查询的内容不一样?查询出来以后再重新调用2.tpl 从而生成index.htm 这个请问能实现么?谢谢
哦 这里是从sql里面出来的值然后替换2.tpl里面的对应的标签 $smarty->assign("name",$foo[0]);
$smarty->assign("namer",$foo[1]); 展开
define("WOB","smarty/libs/");
include(WOB."Smarty.class.php");
$smarty = new Smarty;//设置各个目录的路径,这里是安装的重点
$smarty->template_dir ="smarty/templates/templates";
$smarty->compile_dir ="smarty/templates/templates_c";
$smarty->config_dir = "smarty/templates/config";
$smarty->cache_dir ="smarty/templates/cache";
$smarty->left_delimiter="<--{";
$smarty->right_delimiter="}-->";
$smarty->caching = false;
$foo = $smarty->get_template_vars('foo');
$sql="select * from cct where id='".$foo."'";
$smarty->assign("name",$foo[0]);
$smarty->assign("namer",$foo[1]);
$content=$smarty->fetch("2.tpl");
$title="./2.html";
MfileText($title,$content);
function MfileText($Mtitle,$Content)
{
if(!file_exists(dirname($Mtitle)))
{
if(!@mkdir(dirname($Mtitle),0777))
{
die($Mtitle."false");
}
}
if(!$tp=fopen($Mtitle,"w"))
{
echo "false";
return false;
}
if(!fwrite($tp,$Content))
{
echo "file write false";
fclose($tp);
return false;
}
fclose($tp);
chmod($Mtitle,0666);
}
?>
2.tpl代码:
<--{assign var="foo" value="6"}-->
<--{$name}--><br />
<--{$namer}-->
上面的2.php代码是调用2.tpl这个模板 从而得到foo=6实现查询$sql="select * from cct where id='".$foo."'";这句查询,就是不同的foo变量实现查询的内容不一样?查询出来以后再重新调用2.tpl 从而生成index.htm 这个请问能实现么?谢谢
哦 这里是从sql里面出来的值然后替换2.tpl里面的对应的标签 $smarty->assign("name",$foo[0]);
$smarty->assign("namer",$foo[1]); 展开
4个回答
展开全部
多此一举了,你直接从库里面查询出来前6条数据不得了。
$sql="select * from cct limit 0,6";
$sql="select * from cct limit 0,6";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
只能在其后获取到吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2010-03-15
展开全部
smarty中可以直接使用PHP代码
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询