jamesxg1 Posted April 9, 2009 Share Posted April 9, 2009 <p><b>Address:</b><br><textarea rows="5" cols="40" name="address" id="address" value="<?php print htmlspecialchars($address) ?>" /></textarea></p> textarea is empty :S and yes the var $address is assigned lol Link to comment https://forums.phpfreaks.com/topic/153405-cant-populate-a-text-area-s/ Share on other sites More sharing options...
shlumph Posted April 9, 2009 Share Posted April 9, 2009 Hi, It's not working, because that's not quite how you populate a text area. Try this: <p><b>Address:</b><br><textarea rows="5" cols="40" name="address" id="address"><?php print htmlspecialchars($address) ?></textarea></p> Link to comment https://forums.phpfreaks.com/topic/153405-cant-populate-a-text-area-s/#findComment-805962 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.