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" Quote Link to comment 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 Quote Link to comment 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> Quote Link to comment 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.