Tell me, is there an example code?
<?php $i=0; $html = file_get_contents('https://site.ru/page/1'); ... ?> How to copy all code in notepad ++ in one fell swoop, for example, 100 times by replacing page / 1 with a loop to page / 100? If possible, tell me how.
The result is something like this:
<?php $i=0; $html = file_get_contents('https://site.ru/page/1'); ... ?> <?php $i=0; $html = file_get_contents('https://site.ru/page/2'); ... ?> ---...---
<?php $i=0; $html = file_get_contents('https://site.ru/page/100'); ... ?>