I am querying a URL (via php command line) that returns 100 values at a time only. So instead of me doing the increment (by 100) manually, how would I go about increasing it automatically?
The URL for example is: example.com/getdata.php?start=0&return=100
for ( $start = 0; $start < 300001; $start++ )
{
print ( "$start value is ".$start ) ;
$start = $start+100;
}