I'm trying to parse the site with folowing code.
<span id="ctl00_cphBody_resList_pnlResumes_rptResumes_ctl01_Label1" class="address">Somename, <nobr>Someage</nobr></span>
I'm parsing it this way
$fio=$text_specialty_next->find('span#ctl00_cphBody_resList_pnlResumes_rptResumes_ct'.$n.'_Label1');
But when I'm trying to print the result,
echo $fio->innertext;
There result is empty. What can cause this problem?