I'm trying to get content of this website using PHP simplehtmldom library.
http://www.immigration.govt.nz/migrant/stream/work/workingholiday/czechwhs.htm"
It is not working, so i tried using CURL:
function curl_get_file_contents($URL)
{
$c = curl_init();
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_URL, $URL);
$contents = curl_exec($c);
curl_close($c);
if ($contents) return $contents;
else return FALSE;
}
But always get only respose with some JS code and content:
<noscript>Please enable JavaScript to view the page content.</noscript>
Is any possibility to solve this using PHP? I must use PHP in this case so i need to simulate JS based browser.
Many thanks for any advice.
I'd recommend you two ways: