find('div.h6.name'); // Find all the a elements with class 'main-link' $links = $html->find('a.main-link'); // Find all the small elements with class 'text-muted' $prices = $html->find('small.text-muted'); // Create the table header echo ""; // Loop through each element and add it to the table foreach ($names as $key => $name) { echo ""; //echo ""; echo ""; echo ""; echo ""; } // Close the table echo "
LinkPrice
" . $name->plaintext . "" . $links[$key]->plaintext . "" . $prices[$key]->plaintext . "
"; ?>