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 "
Link | Price | |
---|---|---|
" . $name->plaintext . " | "; echo "" . $links[$key]->plaintext . " | "; echo "" . $prices[$key]->plaintext . " | "; echo "