[Solved] HTML Table parsing in PHP Error


i have used this

include('simple_html_dom.php');
    $html = file_get_html('table.html');
    $ret = $html->find('.ctable',0);
    $name =$ret->children(1)->children(0)->plaintext ;  
    $email =$ret->children(1)->children(1)->plaintext ;
    $address =$ret->children(19)->children(2)->plaintext ;

solved HTML Table parsing in PHP Error