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");
?>
没有显示结果,什么原因呢? 展开
<?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");
?>
没有显示结果,什么原因呢? 展开
展开全部
<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");
?>
刚开始接触些代码的时候,还是要注意细节问题,时间长了之后这样的问题会很容易看出来的
<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");
?>
刚开始接触些代码的时候,还是要注意细节问题,时间长了之后这样的问题会很容易看出来的
展开全部
问题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 ?
$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 ?
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$smarty->template_dir=(MAIN_DIR."templates");
$smarty->compile_dir=(MAIN_DIR."templates_c");
最好不要把左右template_dir 设置成{}
会引起冲突设置成{!}and {--}等等
$smarty->compile_dir=(MAIN_DIR."templates_c");
最好不要把左右template_dir 设置成{}
会引起冲突设置成{!}and {--}等等
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
"{$username}"这个地方错了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询