Hello,
I need to parse html documents to get "values" of all html tags and their attributes like if I have:
<a href="url_here" title="title_here"> text_here </a>
Then I need 3 values of:
array(
'href' => 'url_here',
'title' => 'title_here',
'tag_value' => 'text_here'
);
How to do this?
Please let me know. If possible please give me some code.
regards