i have this URL : http://www.tsetmc.com/Loader.aspx?ParTree=151311&i=65883838195688438
i want to get all numeric data from this website .
e.g : 3.797 M
in this page all data refresh immediately.
i try :
$url = 'http://www.tsetmc.com/Loader.aspx?ParTree=151311&i=65883838195688438';
$data = file_get_contents($url);
echo $html_encoded = htmlentities($data);
or :
$url = 'http://www.tsetmc.com/Loader.aspx?ParTree=151311&i=65883838195688438';
echo $data = file_get_contents($url);
but i cant get numeric data .
both methods does not contain numeric data .