perezf Posted June 21, 2008 Share Posted June 21, 2008 What is that HTML Textarea box called? Is there a tutorial that shows me how to use one in php? Link to comment https://forums.phpfreaks.com/topic/111198-html-text-area-box/ Share on other sites More sharing options...
hitman6003 Posted June 21, 2008 Share Posted June 21, 2008 What is that HTML Textarea box called? Ummm, a textarea. What do you want to do with it? Link to comment https://forums.phpfreaks.com/topic/111198-html-text-area-box/#findComment-570727 Share on other sites More sharing options...
dezkit Posted June 21, 2008 Share Posted June 21, 2008 this thread made my day. Link to comment https://forums.phpfreaks.com/topic/111198-html-text-area-box/#findComment-570728 Share on other sites More sharing options...
perezf Posted June 21, 2008 Author Share Posted June 21, 2008 its to allow users that dont know anything about html to just push B for bold etc... so they can easily manage their content on their website. Link to comment https://forums.phpfreaks.com/topic/111198-html-text-area-box/#findComment-570729 Share on other sites More sharing options...
.josh Posted June 21, 2008 Share Posted June 21, 2008 you put it inside a form element and you assign a name to it just like a form element: <form action = 'target.php' method = 'post'> <textarea name = 'blah' rows = '10' cols = '10'></textarea> </form> and then you access the input just like a regular posted var: target.php echo $_POST['blah']; Link to comment https://forums.phpfreaks.com/topic/111198-html-text-area-box/#findComment-570733 Share on other sites More sharing options...
perezf Posted June 21, 2008 Author Share Posted June 21, 2008 Thats not what i meant, i need to know where i can find a script or tutorial for a rich textarea box that has options for bold, links, etc... Link to comment https://forums.phpfreaks.com/topic/111198-html-text-area-box/#findComment-570738 Share on other sites More sharing options...
peranha Posted June 21, 2008 Share Posted June 21, 2008 You want to look up BB code. Link to comment https://forums.phpfreaks.com/topic/111198-html-text-area-box/#findComment-570740 Share on other sites More sharing options...
hitman6003 Posted June 21, 2008 Share Posted June 21, 2008 http://www.google.com/search?hl=en&q=javascript+rich+text+editor&btnG=Google+Search Link to comment https://forums.phpfreaks.com/topic/111198-html-text-area-box/#findComment-570920 Share on other sites More sharing options...
dannyb785 Posted June 21, 2008 Share Posted June 21, 2008 Use fckeditor. Or nicedit. Or yahoo's rich text-editor. Boo yah. Thread solved Link to comment https://forums.phpfreaks.com/topic/111198-html-text-area-box/#findComment-571129 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.