I am a novice programmer. I need to write a little code. There is a number 2833, you need to output the day in the format 12.09.2018 with this number, then the next day 13.09.2018 with the number 2858. And every next day with a number more than the previous one by 25. The code should end at 10033. I wrote a cycle
<?php for ($a = 2833; $a <=10033; $a=$a+25) { echo "Рейтинг : ". $a . "<br />"; } ?> There is an assumption that the date needs to be translated into a string and create a cycle that would add 86400 and translate into a date again. How sensible can this be done? All results display a column on the page