get('http://hotline.ua/computer/noutbuki-netbuki/?sort=4&p=' . $i); preg_match_all('/

(.+)<\/a>/', $page, $name_matches); preg_match_all('/\'tech\-char\'>(.+)<\/span>/', $page, $prop_matches); $string = ''; for ($a = 0; $a <= 24; $a++) { $notebook = new Notebook; $notebook->parse_from_html($prop_matches[1][$a]); $string .= $i+1 . '. '; //number of item $string .= $name_matches[1][$a] . '
' . $notebook->get_html_result() . '
'; $i++; unset($notebook); } file_put_contents('popular_notebooks.html', $string, FILE_APPEND); unset($parser); }