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:
What I want to do is have my script do the file_get_conten ts and just pull out the "Hello World!" from the textarea. Is that possible? Sorry for bugging you guys, again, you give such helpful advice :].
Code:
<textarea id="body" name="body" rows="12" cols="75" tabindex="3">Hello, World! </textarea>
Comment