如何在php中将变量值赋给单选按钮的值

时间:2013-08-20 08:25:06

标签: php html

您好我正在尝试将php变量值分配给单选按钮的值

这就是我在做什么。但是当我通过java脚本警告值时,我无法看到任何值。

代码:

  echo "<td class='ad'>" . $row['address'] . "</td>";
  echo "<td>"; 
  echo '<input type="radio" name="address" value='$row['address']'/>';

我想分配$row['address'] value to input value =

我该怎么做?

3 个答案:

答案 0 :(得分:1)

你在第一行就做对了,而第三行应该是这样的:

echo '<input type="radio" name="address" value="' . $row['address'] . '"/>';

请参阅http://php.net/manual/en/language.operators.string.php

答案 1 :(得分:1)

如果你没有使用in-php echo(你的PHP代码不够用),你可以这样写:

  

&LT; input name =“address”type =“radio”value =“&lt;?= $ row ['address'];?&gt;   希望有用。我添加了一些空格以使我的答案确定

答案 2 :(得分:0)

你需要使用.这是php中的字符串连接运算符。你所做的几乎是正确的,但你还没有正确地将字符串值与php变量连接起来。

echo '<input type="radio" name="address" value=' . $row['address'] . '/>';