这是我的复选框和按钮的 html 代码
<form>
<input type="checkbox" id="DNA" name="DNA" value="checkox_value">
<button type="button" name="submit" onClick="search()" id="sim_btn" class="btn btn-primary">Start Simulation</button>
</form>
我想检查复选框是否被选中,如果是,则将输入写入我的文件。
我尝试使用 isset 函数,但没有其他建议?
if(isset($_POST["DNA"])) {
$input3 = "signal(f).";
fwrite($handleStoryFile, $input3 . PHP_EOL);
}
答案 0 :(得分:-1)
<!DOCTYPE html>
<html>
<body>
<form action="#" method="post">
<input type="checkbox" id="DNA" name="DNA" value="checkox_value">
<button type="submit" name="submit" id="sim_btn" class="btn btn-primary">Start Simulation</button>
</form>
<?php
if(isset($_POST["DNA"])) {
echo 'test';
}
?>
</body>
</html>