NeelayUnselty
New Member
I am using the simple_html_dom.php file that can be found on sourceforge, here is the docs for it : http://simplehtmldom.sourceforge.net/manual.htmHere is my code:\[code\]<?php echo"<br><br>---The data below will be automatically read from Halo Waypoint---<br><br>"; //Dom starts here include('simple_html_dom.php'); // Create DOM from URL or file $html = file_get_html('https://app.halowaypoint.com/en-us/Halo4/foxtrot5042/wargames/'); // Find all links foreach($html->find('.dataItem') as $element){ echo $element . '<br>'; }?>\[/code\]This code is supposed to grab the kills and deaths for a halo player, but it doesn't. Why is it not grabbing the Kills and Deaths?