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.
PHPコードでチェックボックス(マークされているかどうかにかかわらず)の結果を取得するにはどうすればよいですか?
<input type="checkbox" name="new" style="float:right" />
if(isset($_POST['new'])){ }
チェックされているかどうかを教えてくれます。値も確認できるようにしたい場合は、入力に値を与える必要があります。
<input type="checkbox" name="new" value="someval" style="float:right" /> <?php if(isset($_POST['new']) && $_POST['new'] == 'someval'){ }