0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

(質問)チェックボックスprintの先でチェックボックスprint

Last updated at Posted at 2014-12-22

以下のコードについて質問があります。
「ソ連へ行く」を選択すると、飛んだ先は「ここはソ連です」となります。
「ここはソ連です」の欄にもこのコードと同じようなチェックボックスを使うページを作りたいのですが、そのままこのタグをのせるとなると長くなってしまいますし、見辛いと思います。

例えばですが、「ここはソ連です」の欄にもこれと同じコードを反映させたい場合、どのようにすることがオススメですか?
よろしくお願いします。

<?php

if (isset($_POST["submit"])) {
	if ($_POST["morw"] == "ソ連へ行く") {
		print "ここはソ連です";
	}
	elseif ($_POST["morw"] == "満州へ行く") {
		print "ここは満州です";
	}
	else {
		print "どちらかチェックしてから [送信] ボタンを押してください。";
	}
}

?>
ソ連へ行く?それとも満州?<br>
<form action="./radio.php" method="POST">
	<input type="radio" name="morw" value="ソ連">ソ連 <input type="radio" name="morw" value="満州">満州 
	<input type="submit" name="submit" value="送信">
</form>
0
0
6

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?