Roy766 Posted October 24, 2008 Share Posted October 24, 2008 Hi, all! I'm not to good with PHP and I was wondering if anyone could help. I have a simple text box and a submit button. I want a little series of text underneath that text box that echoes every word (separated by a space), on its individual line. For example, if a user types in "I am awesome" in the box and presses the button, the output would read: I Am Awesome Anybody have any suggestions? Thanks in advance! Link to comment https://forums.phpfreaks.com/topic/129879-php-string-parsing/ Share on other sites More sharing options...
trq Posted October 24, 2008 Share Posted October 24, 2008 <form method="post"> <input type="text" name="data"> <input type="submit" name="submit"> </form> <?php if (isset($_POST['submit'])) { $words = explode("\n",$_POST['data']); foreach ($words as $word) { echo "$word<br />"; } } ?> Link to comment https://forums.phpfreaks.com/topic/129879-php-string-parsing/#findComment-673328 Share on other sites More sharing options...
DarkWater Posted October 24, 2008 Share Posted October 24, 2008 Or: <form method="post"> <input type="text" name="data"> <input type="submit" name="submit"> </form> <?php if (isset($_POST['submit'])) { echo implode('<br />', explode("\n", $_POST['data'])); } ?> Link to comment https://forums.phpfreaks.com/topic/129879-php-string-parsing/#findComment-673359 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.