Basically I want to write php code that lists all the contents that are between <h1>
tags from external url.
I don't want just the first but all of them. So if the source of the external website is
<html>
<title></title>
<head></head>
<h1>Test Here</h1>
<h1>Test here</h1>
</html>
I want to make a script that generates only the content between the <h1>
tags that would be:
Test Here
Test here
I'm familiar with PHP but I just cant think of scripts that do that.