php内用smarty进行表单提交出问题

----------test_090414_a.php----------<?php$username=null;$password=null;//require_onc... ----------test_090414_a.php----------
<?php
$username=null;
$password=null;
//require_once("../smarty_conf.php");

define("MAIN_DIR","F:/www/");
require_once(MAIN_DIR."libs/Smarty.class.php");
//require_once('../libs/smarty.class.php');
$smarty= new Smarty;
$smarty->template_dir=(MAIN_DIR."templates");
$smarty->compile_dir=(MAIN_DIR."templates_c");
$smarty->config_dir=(MAIN_DIR."configs");
$smarty->cache_dir=(MAIN_DIR."cache");

$smarty->assign("username", $username);
$smarty->assign("password", $passname);
$smarty->display("test_090414_a.tpl");
?>

-----------test_090414_a.tpl--------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>go</title>
</head>

<body>
<form id="form1" name="form1" method="post" action="test_090414_b.php">
<label>username
<input name="{$username}" type="text" id="{$username}" />
</label>
<p>
<label>password
<input name="{$password}" type="password" id="{$password}" />
</label>
</p>
<p>
<label> 登陆
<input type="submit" name="Submit" value="提交" />
</label>
</p>
</form>
</body>
</html>

------------test_090414_b.php-----------
<?php
$username=$_POST['username'];
$passname=$_POST['password'];

echo("$username");
echo("$password");
?>

没有显示结果,什么原因呢?
展开
 我来答
0独o狼0
2009-04-17 · 超过11用户采纳过TA的回答
知道答主
回答量:30
采纳率:0%
帮助的人:18万
展开全部
<label>username
<input name="username" type="text" id="{$username}" />
</label>
<p>
<label>password
<input name="password" type="password" id="{$password}" />
</label>

这样就可以了,其实你这里设置id也没有用,因为前面赋值为null了,没有什么意义了

下面
------------test_090414_b.php-----------
<?php
$username=$_POST['username'];
$password=$_POST['password'];

echo("$username");
echo("$password");
?>

刚开始接触些代码的时候,还是要注意细节问题,时间长了之后这样的问题会很容易看出来的
百度网友22dfbf9
2009-04-14 · TA获得超过146个赞
知道答主
回答量:55
采纳率:0%
帮助的人:96.3万
展开全部
问题1. test_090414_a.php中,
$username=null;
$password=null;
初始化2个变量是空
$smarty->assign("username", $username);
$smarty->assign("password", $passname);
assign的变量当然也是空,结果就是tpl里面无法拿到值。

问题2. test_090414_a.php中,
$password=null;
$smarty->assign("password", $passname);
$password 还是 $passname ?
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ho2xing
2009-04-19
知道答主
回答量:21
采纳率:0%
帮助的人:14.6万
展开全部
$smarty->template_dir=(MAIN_DIR."templates");
$smarty->compile_dir=(MAIN_DIR."templates_c");
最好不要把左右template_dir 设置成{}
会引起冲突设置成{!}and {--}等等
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lchser
2009-04-16
知道答主
回答量:17
采纳率:0%
帮助的人:0
展开全部
"{$username}"这个地方错了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式