Would anyone perhaps know how to get the value of a specific element in an HTML document with PHP? What I'm doing right now is using file_get_conten ts to pull up the HTML code from another website, and on that website there is a textarea:

Code:
<textarea id="body" name="body" rows="12" cols="75" tabindex="3">Hello, World!

</textarea>
What...