Bonjour, does anyone know of a way of creating a spider that acts as if it has javascript enabled?
PHP Code:
file_get_contents("http://www.google.co.uk/search?hl=en&q=".$keyword."&start=".($x*10)."&sa=N")
it would retrieve the output of that page. If you used, PHP Code:
file_get_contents("http://www.facebook.com/something/something.something.php")
(im not sure i just know face book is a good example)
it would return trhe output, which im guessing would include something along the lines of "you must have javascript enabled to continue" because it is a javascript operated site (not accessible).
EDIT: PHP Code: Just checked
$link = "http://www.facebook.com/index.php";
$contents = file_get_contents($link);
echo $contents;
returns: You are using an incompatible web browser.
Sorry, were not cool enough to support your browser. Please keep it real with one of the following browsers:
* Mozilla Firefox
* Safari
* Microsoft Internet Explorer
which i tested through all the above browsers ?