[insert_php]
include_once(‘simple_html_dom.php’);
$html = file_get_html(‘https://sport.sky.it/calcio/serie-a/probabili-formazioni/’);
foreach($html ->find(‘section[class=formazione-section]’) as $item)
foreach($item ->find(‘a’) as $element)
$element->href = null;
foreach($html ->find(‘img’) as $img) {$img->outertext = ”;}
$html = file_get_html(‘https://sport.sky.it/calcio/serie-a/probabili-formazioni/’);
foreach($html ->find(‘section[class=formazione-section]’) as $item)
foreach($item ->find(‘a’) as $element)
$element->href = null;
foreach($html ->find(‘img’) as $img) {$img->outertext = ”;}
echo $item;
[/insert_php]