问个初级php的问题
index.PHP<html><head><title>reg-form-test</title></head>
<body>
<h2 align="center">User Registration Form</h2>
<form name="registration" method="post" action="confirm.php" enctype="multipart/form-data">
<table width="400" border="1" align="center" cellpadding="5" cellspacing="0" bgcolor="#cccccc">
<tr>
<td width="47">
Full Name
</td>
<td colspan="2">
<input type="text" name="name1" size="25">
</td>
</tr>
<td colspan="3">
<input type="submit" name="submit" value="submit">
</td>
</tr>
</table>
</body>
</html>
CONFIRM.PHP
<?phpif(empty($name1))
{
die("No Name Submitted");
}
else
{
//---print name
echo $name;
}
?>
运行结果
<html><head><title>Index</title></head>
<body>
<h2 align="center">User Registration Confirmation Page.</h2>
<form name="registration" method="post" action="output.php" enctype="multipart/form-data">
<table width="300" border="1" align="center" cellpadding="5" cellspacing="0" bgcolor="#eeeeee">
<tr>
<td width="47%" align="right"><b>Full Name</b> </td>
<td>
No Name Submitted!找不到错误啊:yct_25 参见第六节;P
NND
用套件:Apache v1.3.29 (Win32)
PHP v4.3.4 (Win32)
Zend Optimizer v2.1.0 (Win32)
MySQL v4.0.17(Win32)
ActivePerl v5.8.0.806(Win32)
运行就没问题
回复 #4 coredump 的帖子
你给的教程我打不开啊,是不是编译有问题啊 你把文件名改成拼音或者英文就可以打开了 哈!只不过打开了里面还是不行,可能每个章节的资料是中文的吧?我以前看电子书,把文件名改了就好了,这次不行!:tk_43
回复 #8 小河 的帖子
看来是瑕疵品<input type="text" name="name1" size="25">
if(empty($name))
应该是$name1 ,另外,用$_POST。 楼主太菜了, 在PHP.INI 里改一下设置, 使$name1自动付值 原帖由 morning 于 1-5-2009 00:01 发表 http://www.freeoz.org/forum/images/common/back.gif
楼主太菜了, 在PHP.INI 里改一下设置, 使$name1自动付值
how?:o 我很脱节了,彻底不懂。加分鼓励NEWGAY吧!
BTW,NEWGAY,怎么去搞PHP了?:good
页:
[1]