This is html text in the website, i want to grab
1,000 Places To See Before You Die
First of all check your html. Now it is like
$string = ' 1,000 Places To See Before You Die 2009 ';
There is no close tag for ul, perhaps you missed it.
Try like this
$xml = simplexml_load_string($string); echo $xml->li->a['title'];