0

次のように、PHP変数をhtmlラジオボタンの値に割り当てようとしています:

echo "<input type='radio' name='mydisctopic' value="($row['message'])">",($row['message']),"<br>";

しかし、私はエラーが発生し続けます:

Parse error: syntax error, unexpected '(', expecting ',' or ';' in ...

手伝ってくれますか?ありがとう!

4

5 に答える 5

0

行を変更します

echo "<input type='radio' name='mydisctopic' value='".$row['message']."'>".$row['message']." <br/>";
于 2013-11-11T11:21:13.227 に答える
0
echo "<input type='radio' name='mydisctopic' value=\"".$row['message']."\">\"".$row['message']."\"<br>";

より良い方法:

    <input type="radio" name="mydisctopic" value="<?= $row['message']; ?>">"<?= $row['message']; ?>"<br>";
于 2013-11-11T11:21:18.980 に答える
0

への変更:

echo "<input type='radio' name='mydisctopic' value='". $row['message'] ."'>". $row['message'] ."<br>";
于 2013-11-11T11:22:35.753 に答える