teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

文字列の扱いを修正

2021/08/02 05:24

投稿

fd0517
fd0517

スコア3

title CHANGED
File without changes
body CHANGED
@@ -4,8 +4,7 @@
4
4
  <?php
5
5
  if ($s_flg == 1) {
6
6
  //フラグが1の場合は表示
7
- echo <input type="radio" name="hoge" id="hoge" value="1" >huga'
7
+ echo'<input type="radio" name="hoge" id="hoge" value="1" >huga';}
8
- }
9
8
  ?>
10
9
 
11
10
  ```
@@ -14,10 +13,10 @@
14
13
 
15
14
  ```php
16
15
  <?php
17
-           if ($s_flg == 1) {
16
+ if ($s_flg == 1) {
17
+ //フラグが1の場合は表示
18
- <input type="radio" name="hoge" id="hoge" value="1" <?php
18
+ echo'<input type="radio" name="hoge" id="hoge" value="1"<?php
19
- if ($p_flg == 1) { echo "checked";}?>huga
19
+ if ($p_flg == 1) { echo /'checked/';}?>hogeです';}
20
-             }
21
20
  ?>
22
21
  ```
23
22