PHP判断提交的表单是否有数据遇到的问题!
<?if(isset($_POST["submit"]){echo"提交过来了";}else{echo"submitisnocome~";}?>以上的PHP代码哪里出错了...
<?
if(isset($_POST["submit"])
{
echo "提交过来了";
}
else
{
echo "submit is no come~";
}
?>
以上的PHP代码哪里出错了?
这是错误提示:Parse error: syntax error, unexpected '{' in D:\HTML\PHP\phpnow\PHPnow-1.5.6\htdocs\login\1.php on line 3
这是html代码:
<html>
<head></head>
<body>
<fieldset>
<legend>用户登录</legend>
<form name="LoginForm" method="post" action="1.php" onSubmit="return InputCheck(this)">
<p>
<label for="username" class="label">用户名:</label>
<input id="username" name="username" type="text" class="input" />
<p/>
<p>
<label for="password" class="label">密 码:</label>
<input id="password" name="password" type="password" class="input" />
<p/>
<p>
<input type="submit" name="submit" value="submit" class="left" />
</p>
</form>
</fieldset>
</body>
</html>
PHP没错啊!可是为啥会报错啊! 展开
if(isset($_POST["submit"])
{
echo "提交过来了";
}
else
{
echo "submit is no come~";
}
?>
以上的PHP代码哪里出错了?
这是错误提示:Parse error: syntax error, unexpected '{' in D:\HTML\PHP\phpnow\PHPnow-1.5.6\htdocs\login\1.php on line 3
这是html代码:
<html>
<head></head>
<body>
<fieldset>
<legend>用户登录</legend>
<form name="LoginForm" method="post" action="1.php" onSubmit="return InputCheck(this)">
<p>
<label for="username" class="label">用户名:</label>
<input id="username" name="username" type="text" class="input" />
<p/>
<p>
<label for="password" class="label">密 码:</label>
<input id="password" name="password" type="password" class="input" />
<p/>
<p>
<input type="submit" name="submit" value="submit" class="left" />
</p>
</form>
</fieldset>
</body>
</html>
PHP没错啊!可是为啥会报错啊! 展开
3个回答
展开全部
拼写错误
你的submit是哪个按钮的name?
一般都是把文本框或密码框的name传过来。没有人会把submit传过来的。
你的submit是哪个按钮的name?
一般都是把文本框或密码框的name传过来。没有人会把submit传过来的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<?php
echo isset($_POST['submit'])?'提交过来了':'submit is no come~";
?>
我这个是不是比你的简单多了呢?
echo isset($_POST['submit'])?'提交过来了':'submit is no come~";
?>
我这个是不是比你的简单多了呢?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询