Hi i am trying to assign the php variable value to the radio button's value
Here is what i am doing. But i am not able to see any value when i am alerting the value through java-script.
code:
echo "<td class='ad'>" . $row['address'] . "</td>";
echo "<td>";
echo '<input type="radio" name="address" value='$row['address']'/>';
i want to assign the $row['address'] value to input value=
how can i do this?
echo '<input type="radio" name="address" value=' . $row['address']' . '/>';