I'm trying to extract to data between <table class="clubs"> .. </table>
using this code:
preg_match('#\<table class\="clubs"\>(.*?)\</table\>#', $raw_data, $new_data);
My HTML markup:
but i get empty array! what's wrong? I believe everything is escaped correctly