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? Quote 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? Quote 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. Quote 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. Quote 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']; Quote 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... Quote 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. Quote 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 Quote 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 Quote Link to comment https://forums.phpfreaks.com/topic/111198-html-text-area-box/#findComment-571129 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.