I want to print xml data which is returned by a website to table
$url="http://rss.careerjet.com/rss?s=java&l=delhi";
$xml= file_get_contents($url);
$data = json_decode($json, TRUE);
foreach ($data as $row) {
echo $row['title'];
}
however i am getting some error unable to find object title;
please help