I just thought I'd come back and post what i've already tried hehe
So far, the best I've been able to manage is:
(src=|href=)"*[_a-z0-9.-]+
this just returns 22x "src=" hehe... and there are only 3 src= in the page...
This is the code i am using. I am not very familiar with regex so there is prolly a more efficient way to do this.. hehe:
$html=spliti("<|>",$CurrentPage);
$count=count($html);
for($loop=1; $loop!=$count-1; $loop++)
{
eregi("(src=|href=)\"*[_a-z0-9.-]+",$html[$loop], $reg);
$URL_List[$loop]=$reg[1];
for($loop=0; $loop!=$elements+1; $loop++)
{
echo "$URL_List[$loop]\n";
}