I have a question regarding string manipulation, Let's say I have a text string variable called $text with the following contents:
"PHP is a widely-used general-purpose scripting language that is especially suited...
What I want to do with this $text variable is to modify it's contents by inserting a ">" character in front of the text, like this:
"PHP is a widely-used general-purpose
scripting language that is especially
suited...
Is this possible to do ?
Victor