sheraz Posted September 19, 2009 Share Posted September 19, 2009 i want to show the text string in the textare which i will get from a variable.please tell me how can i display it in textarea. Link to comment https://forums.phpfreaks.com/topic/174772-displaying-a-value-in-textare/ Share on other sites More sharing options...
trq Posted September 19, 2009 Share Posted September 19, 2009 Assuming your talking about a php variable? <?php $v = 'hello'; ?> <textarea><?php echo $v; ?></textarea> Link to comment https://forums.phpfreaks.com/topic/174772-displaying-a-value-in-textare/#findComment-921061 Share on other sites More sharing options...
sheraz Posted September 19, 2009 Author Share Posted September 19, 2009 Thanks buddy Link to comment https://forums.phpfreaks.com/topic/174772-displaying-a-value-in-textare/#findComment-921068 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.