我在使用$_GET
单选按钮时遇到问题。
4th<input type="checkbox" name="date" value="4th">
5th<input type="checkbox" name="date" value="5th">
6th<input type="checkbox" name="date" value="6th">
用户选择他们可用的日子。然后我想回显用户选择的日期:
<?php echo "You are available " . $_GET["date"] . "!"; ?>
上面的代码只回显了一个。不是全部三个。有没有办法做到这一点?