Any reason why the following is not retrieving the data from my row?
echo " <textarea name = \"Address\" cols=\"20\" rows=\"5\" type=\"text\" value=\"".$row['Address']."\">"; echo '</textarea>';
any insight? thank you!
echo '<textarea name="Address" cols="20" rows="5">' . $row['Address'] . '</textarea>';
thank you