shedokan Posted November 26, 2007 Share Posted November 26, 2007 I'm trying to do this script: <textarea rows="10" cols="50" value="<? echo "text"; ?>" style="border: 1px solid #666666;" name="text"></textarea> and it doesn't works only shows an empty textarea and when I look at the source code of the page I can see value="text" Link to comment https://forums.phpfreaks.com/topic/78861-solved-why-cant-i-ech-into-a-textarea/ Share on other sites More sharing options...
PFMaBiSmAd Posted November 26, 2007 Share Posted November 26, 2007 A textarea does not have a value="..." parameter. Here is a working example of a textarea - http://w3schools.com/html/showit.asp?filename=tryhtml_textarea Link to comment https://forums.phpfreaks.com/topic/78861-solved-why-cant-i-ech-into-a-textarea/#findComment-399121 Share on other sites More sharing options...
Crew-Portal Posted November 26, 2007 Share Posted November 26, 2007 Basically Try This: <textarea rows="10" cols="50" style="border: 1px solid #666666;" name="text"><?php echo "text"; ?></textarea> Link to comment https://forums.phpfreaks.com/topic/78861-solved-why-cant-i-ech-into-a-textarea/#findComment-399154 Share on other sites More sharing options...
shedokan Posted November 26, 2007 Author Share Posted November 26, 2007 yea I kinda figured that out because it needes a tag to close itself. thanks anyways. Link to comment https://forums.phpfreaks.com/topic/78861-solved-why-cant-i-ech-into-a-textarea/#findComment-399354 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.