Hello, can any one help me with a peice of code i would like to write, I would like to read each separate word in a text area of a form and then print out each of the words into a html file by themselves, one after the other.
Please if any one can help me then please get in contact, Thanks
Chris Davis
You could try something like:
<textarea name="text"></textarea>
Then:
explode(" ",$text); $count=count($text);
for($x=0;$x<=$count;$x++) { echo $text[$x]; }
Dunno if will work but it's worth a crack.
scottd