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]);
展开
 我来答
lrenwang
2010-03-15 · TA获得超过289个赞
知道小有建树答主
回答量:437
采纳率:0%
帮助的人:309万
展开全部
模仿 plugins/modifier.default.php 写个插件进去比较方便, 一个方法全处理了
来吧_角儿
2010-03-17 · TA获得超过693个赞
知道小有建树答主
回答量:553
采纳率:0%
帮助的人:314万
展开全部
多此一举了,你直接从库里面查询出来前6条数据不得了。

$sql="select * from cct limit 0,6";
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友bcdc991c6
2010-03-15 · TA获得超过244个赞
知道小有建树答主
回答量:384
采纳率:0%
帮助的人:304万
展开全部
只能在其后获取到吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2010-03-15
展开全部
smarty中可以直接使用PHP代码
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式