Forum Moderators: coopster
<a href="/file/564547">Text here</a></td>
I need to be able to extract the number and text. Have tried this:
preg_match_all("/\<a href=\"\/file\/([^0-9])\"\>(.*)\<\/a\>\<\/td\>/", $data, $m);
and this:
preg_match_all("/\<a href=\"\/file\/([0-9])\"\>(.*)\<\/a\>\<\/td\>/", $data, $m);
but $m is always empty! Any help?