Написание парсера на PHP
Самый простой парсер на PHP
<?php
$html = file_get_contents('http://www.example.com/');
if (preg_match_all('#[<]h1[^>]*>(.*)[<]\/h1[>]#', $html, $matches)) {
?><pre><?php print_r($matches); ?></pre><?php
}
Автоматизируйте все.

