I am doing some screen scrapping with PHP. When I snag the code from a URL, I want to grab the contents of the META tags, so, whatever exists between:
<meta name="description" content=" and " />
as well as
<meta name="keywords" content=" and " />
And then, everything between:
<body * >
and </body>
Put I do not want the beginning and end delimiters included in the returned string...is there a nice easy PHP function or user defined function that can do this, it doesn't seem like something that should be that hard of a task but it's giving me problems...
little help?
Thanks.