admin管理员组文章数量:1346336
I have this form:
<form action="" target="_blank" method="post" name="xyz" id="abc">
<input type="hidden" name="email" value="user_email" />
<input type="submit" name="sbmt" id="sbmt" value="user_value" class="user_class"/>
</form>
Suppose there is a variable VAR. The form can be submitted only when the value of VAR is 1.
In detail On click on submit it will firstly check the value of VAR and if it returns true from will submitted and redirect to page given in action. And if it returns False it will show a message that Please check value of VAR
Imp VAR is not the field of form. We are getting this value from database.
I have this form:
<form action="http://targatesite." target="_blank" method="post" name="xyz" id="abc">
<input type="hidden" name="email" value="user_email" />
<input type="submit" name="sbmt" id="sbmt" value="user_value" class="user_class"/>
</form>
Suppose there is a variable VAR. The form can be submitted only when the value of VAR is 1.
In detail On click on submit it will firstly check the value of VAR and if it returns true from will submitted and redirect to page given in action. And if it returns False it will show a message that Please check value of VAR
Imp VAR is not the field of form. We are getting this value from database.
Share Improve this question edited Aug 6, 2013 at 10:33 fnkr 10.1k6 gold badges57 silver badges62 bronze badges asked Aug 6, 2013 at 10:25 mayankmayank 752 gold badges2 silver badges6 bronze badges 1- One more amendment in question If VAR=1 the form should be successfully submitted. And if not it should show error that "check the value of VAR. " – mayank Commented Aug 6, 2013 at 10:54
4 Answers
Reset to default 5Add onSubmit="return submit();"
<form action="http://targatesite." target="_blank" method="post" name="xyz" id="abc"> <input type="hidden" name="email" value="user_email" />
<input type="submit" name="sbmt" id="sbmt" value="user_value" class="user_class" onSubmit="return submit();"/>
</form>
Try this Script :
function submit(){
if(var==1){
return true;
}
else{
alert("Please check value of VAR")
return false;
}
}
$('#abc').on('submit', function(){
if(VAR == 1){
return true;
}
alert('Please check value of VAR');
return false;
});
This will work. The only thing you need to check is that VAR
is in the scope of this function.
try this
var MYVAR=true;
$('#abc').submit(function(){
if(MYVAR){
return true;
}
alert('check the value of VAR');
return false;
});
Yes you can check VAR variable value from database,
when you have to submit form, you can code like this
if($_POST['sbmt']){
$query = 'SELECT var FROM tablename';
// here you can check var value
if(VAR==1){
//submit your form
} else {
$error_msg = 'Please check value of VAR';
}
}
print this $error_msg whenever you want to show.
本文标签: phpSubmit form if condition is trueStack Overflow
版权声明:本文标题:php - Submit form if condition is true - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743830577a2546438.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论