I am stuck for 2 days getting this to work.
I am data from a website, all data is getting perfect except for the images.
I have this code for image part.
foreach($html->find('li')as $pakimages)
{
foreach($pakimages->find('img') as $pakimage)
{
$images = $pakimage;
echo $images->src .'<br>';
}
}
When I run this code its fetches all images of the vehicles, but I need only first images of the vehicle not all related vehicle images.