Lo he adaptado a mi código...
Código PHP:
<?php
include('simple_html_dom.php');
$html = file_get_html('38024.xml');
?>
<table border="1"><tr><td>Dias</td>
<?php
foreach($html->find('dia') as $element2)
echo '<td>' . $element2-> fecha . '</td>';
?>
</tr><tr>
<td>
Prob
</td>
<?php
foreach($html->find('prob') as $element4)
$conteo=$element4->length ;
for ($i=3; $i<$conteo; $i++)
{
echo '<td>' . $element4->outertext . '%' . '</td>';
}
?>
</tr></table>
<?php
?>
Pero sigue sin funcionarme