|
程序是这样的
在register控制器里面的
function get_username(){
$username = $_POST['username'];
echo $username;
}
提交页面是这样
<form name="form1" method="post" action="http://192.168.1.4/CodeIgniter/index.php/register/get_username/">
<table width="800" border="0" align="center" cellpadding="0" cellspacing="5">
<tr>
<td width="100" align="right">用户名:</td>
<td width="180"><label>
<input name="username" type="text" id="username" size="25">
</label> </td>
</tr>
<tr>
<td align="right"> </td>
<td><label>
<input type="submit" name="button" id="button" value="提交">
</label></td>
</tr>
</table>
</form>
提交后什么都不显示。 做了很多测试,把$_POST['username'];换成$this->input->xss_clean($this->input->post(username))也不得。
firebug里面显示是post有数据过去了的。可就是接受不到数据。
请问是不是少了些什么没有加载? |
|