I'd like to get contents of a website using JavaScript menu. I need to simulate clicks (or typing javascript:goto Page("p10"); into a browser) on menu links to be able to move from one page to another.
Basically the process will look like this:
while (any_content) {
file_get_conten ts();
clickalink();
}
Can cURL or JSON be used for this task?
Basically the process will look like this:
while (any_content) {
file_get_conten ts();
clickalink();
}
Can cURL or JSON be used for this task?
Comment