Hi. How can i get the url and the link name from the following HTML code through preg_match or other function?
<TR><TD align=left><A href="http://www.test.com?id=1&G=22"
target=RIGHT>LINK NAME 1</A></TD></TR>
<TR><TD align=left><A href="http://www.test2.com?id=1&G=22"
target=RIGHT>LINK NAME 2</A></TD></TR>
The code is just a sample.
Basically i want to parse a page with links in a table.
Thanks,
John