Hi. I have the following line...
$body = preg_split( '/<\/textarea>/i', $filedata );
I really just don't understand what will happen. From what I understand (by reading up on regular expressions and their use) is that will find either a <textarea> or </textarea> (* being anything after the a)
How does preg_split split the values? Does it count the result of the <textarea>?
Basically I'm trying to go to a document (via HTTP) and grab anything between <textarea> and </textarea>
Any insight would be appreciated.
Regards,
Nate