I want to parse some data (game names) from an external page : https://www.mol.com/Product/GamesHive
using this code :
<?php
$url = 'https://www.mol.com/Product/GamesHive';
$content = file_get_contents($url);
$first_step = explode('<div class="col-xs-4">', $content);
$second_step = explode('</div>', $first_step[1]);
echo $second_step[0];
?>
However some data is lost. The original page has 384
items and my page only has 169
items. What's the problem?
Is this what you are trying to achieve?