LoginSignup
2
2

More than 5 years have passed since last update.

チェックボックスのオンオフ

Last updated at Posted at 2013-09-26

探しても複数パタンばかり出てくるので、メモり。

form.html
<form action="test.php" method="post" name="chekbo">
<input type="hidden" name="testcheck" value="0">
<input type="checkbox" name="testcheck" value="1">オン
</form>

で投げて

test.php
<?php $_POST['testcheck'] == 1 ? echo "オン": echo "オフ"; ?>

で受け取って表示。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2