Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当单击以使用 if else 语句时,我想要我的提交按钮。如果一个字段是 6+,提交应该发送一封电子邮件,如果不是,它应该重定向到一个页面。
所以你的表单中有 6 个字段?
如果是这样,那么就这样做:
if($_POST['fieldname'] != null) { send mail } else { redirect }
您可以对所有 6 个字段执行此操作,或者您可以轻松简化它。
您可能需要if($isSending >= 6):并且可能会检查,$isSending === false但除此之外它应该可以工作。
if($isSending >= 6):
$isSending === false
您是否有特定的部分有问题?