M
mycwcgr_bak
Unregistered / Unconfirmed
GUEST, unregistred user!
为什么不能正常传送变量的值给PHP程序?
下面是我从书上抄的例子,当我执行http://localhost/main.html上的Submit按钮能正常打开 cw.php文件,但是为什么仅仅在上面显示
first name
last name
而$aa,$bb的值没有显示出来,也就是说main.html的 value="cw", value="fy"不能正常传送变量的值给PHP程序cw.php?
请问是为什么?
====================main.html=========
<html>
<head>
<title>Untitled do
cument</title>
<meta http-equiv="Content-Type" content="text/html;
charset=gb2312">
</head>
<body bgcolor="#FFFFFF">
<form action="cw.php" method="post">
<p> Input first namme
<input type="text" name="aa" value="cw">
</p>
<p> Input last name
<input type="text" name="bb" value="fy">
</p>
<p>
<input type="submit" name="Submit" value="Submit">
<input type="reset" name="Reset" value="cancel">
</p>
</form>
</body>
</html>
=========cw.php===============
<html>
<head>
<title>Untitled do
cument</title>
<meta http-equiv="Content-Type" content="text/html;
charset=gb2312">
</head>
<body bgcolor="#FFFFFF">
<?
printf("first name %s <br>",$aa);
printf("last name %s <br>",$bb);
?>
</body>
</html>
下面是我从书上抄的例子,当我执行http://localhost/main.html上的Submit按钮能正常打开 cw.php文件,但是为什么仅仅在上面显示
first name
last name
而$aa,$bb的值没有显示出来,也就是说main.html的 value="cw", value="fy"不能正常传送变量的值给PHP程序cw.php?
请问是为什么?
====================main.html=========
<html>
<head>
<title>Untitled do
cument</title>
<meta http-equiv="Content-Type" content="text/html;
charset=gb2312">
</head>
<body bgcolor="#FFFFFF">
<form action="cw.php" method="post">
<p> Input first namme
<input type="text" name="aa" value="cw">
</p>
<p> Input last name
<input type="text" name="bb" value="fy">
</p>
<p>
<input type="submit" name="Submit" value="Submit">
<input type="reset" name="Reset" value="cancel">
</p>
</form>
</body>
</html>
=========cw.php===============
<html>
<head>
<title>Untitled do
cument</title>
<meta http-equiv="Content-Type" content="text/html;
charset=gb2312">
</head>
<body bgcolor="#FFFFFF">
<?
printf("first name %s <br>",$aa);
printf("last name %s <br>",$bb);
?>
</body>
</html>