Im solving following problem:
I need automatically to analyze web page, which is using asp scripts (fe. www.eproton.cz) - output of this analyze is an array of all links (a href tags) of this page.
How can I read html code, which is shown in a browser ?
When Im trying to read it through simple code fe.:
<?
$path = 'http://www.eproton.cz';
$pagedata = file_get_contents($path);
echo $pagedata;
?>
it is not correct way of course.
How to solve it ?
Excellent example is in Opera browser >
1. choose http://www.eproton.cz
2. look at links (from menu tools)
HOW TO REACH THE SAME RESULT ??
art