我想在复选框上创建条件。 如果未选中该复选框,则为NO,然后它将转到另一页但不起作用。请指教
if ($kopi == 'No')
{
header("Location: thank-you.php"); /* Redirect browser */
} else {
header("location: next.php");
}
答案 0 :(得分:3)
假设您的标记为<input type="checkbox" name="kopi" value="value1">
提交表格后,您可以查看:
if(isset($_POST['kopi']))
{header("Location: thank-you.php"); }
else
{header("Location: location: next.php"); }