howdy - good morning Community!
i want to parse the site - and get the results out of it:
see this URL here - a swiss-server - head over to this site where i want to loop over - see this page here - i want to access the sub-pages in order to get the information that is shown in the "detail-pages!"
therefore i need to loop over the line 2 - don ´ i!?
<?php
$data = file_get_contents('[here we have to add the URL ');
$regex = '/Page 1 of (.+?) results/';
preg_match($regex,$data,$match);
var_dump($match);
echo $match[1];
?>
in order to get the details of the sub-pages - plz have a look above!!
just help me with this seven-liner ;)
Fritz The Cat