I have a question in PHP that I can not solve.
I have a variable that has the value 5000. I need to divide that variable with a value of 300. For example:
$var = ceil (5000 / 300);
That will result in 17. I need to generate groups of 300 and discover the rest. For example:
$var1 = 300;
$var2 = 300;
.
.
.
$varX = 200; //rest
The number 5000 and 300 are dynamic, so I can not do it manually.
Does anyone know how I could do this?