I simply want to load above page's complete contents and display using php. I tried below method but it did not work.
$url = "http://www.officialcerts.com/exams.asp?examcode=101";
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
$output = curl_exec($curl);
curl_close($curl);
$DOM = new DOMDocument;
$DOM->loadHTML( $output);
How do I walk the Document that loadHTML produced?