Hello,
I got terrible need :)
I have this:
$profile_data = file_get_contents("http://tyxo.bg/d/148025/daily");
$sep1 = explode('<table id="general-table">', $profile_data);
$set2 = explode("</table>", $sep1[1]);
echo $set2[0];
which output this:
http://i.imgur.com/2THUUve.png
I need to export only this values without anything else:
http://i.imgur.com/IQG708Q.png
You can test by your self the code i give - he outputs the html which is needed to parse from preg_replace or something else maybe?
I dont know how to proceed, this is not my best part.
I want to get only values in red (only this - without anything else)
And i want to separate by comma everything value.
I want this info for one my js scripts which need this information. I will place info later in jquery diagrams to have cool stats, like this:
http://i.imgur.com/nbl0KF2.png
Thanks for any replies and sorry for my english (isnt good)