i want to parse the site - and get the results out of it:
see this third overview-page
therefore i need to loop over the line 2 - don ´ i!?
<?php
$data = file_get_contents('http://www.educa.ch/dyn/79363.asp?action=search');
$regex = '/Page 1 of (.+?) results/';
preg_match($regex,$data,$match);
var_dump($match);
echo $match[1];
?>
in order to get the details of the pages -
see this first detail-page
see this second detail-page
see this third detail-page
just help me with this seven-liner 😉
Subsequently i want to print out the results - i want to print out all the fetched URLs -
is this doable with PHP
fianlly - i want to parse all the resuults - the content pages and want to store the data in a database
bernhard hinault