R
redwood
Unregistered / Unconfirmed
GUEST, unregistred user!
先看看下面的代码
index.html:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<form name="form1" method="post" action="get.php">
<input name="bbc" type="text" id="bbc">
<input type="submit" name="Submit" value="提交">
</form>
</body>
</html>
get.php
<?php
if (empty($bbc)) {echo "Empty";}
else
{
echo "I'm $bbc";
}
?>
刚开始学PHP的时候,说是PHP可以把表单的数据直接转换为同名的变量,也就是说INDEX.HTML中的bbc是会变成$bbc的,但是在提交之后get.php无论怎样都是显示empty
这是为什么?
我用的是apache+php4,php使用模块方式。我确定服务器设置方面没有问题?
为什么会这样啊?
index.html:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<form name="form1" method="post" action="get.php">
<input name="bbc" type="text" id="bbc">
<input type="submit" name="Submit" value="提交">
</form>
</body>
</html>
get.php
<?php
if (empty($bbc)) {echo "Empty";}
else
{
echo "I'm $bbc";
}
?>
刚开始学PHP的时候,说是PHP可以把表单的数据直接转换为同名的变量,也就是说INDEX.HTML中的bbc是会变成$bbc的,但是在提交之后get.php无论怎样都是显示empty
这是为什么?
我用的是apache+php4,php使用模块方式。我确定服务器设置方面没有问题?
为什么会这样啊?