Number without remainder:
$result = (int) (1779 / 30);
The remainder:
$result = 1779 % 30;
solved Write the division and the remainder on two variables using php [duplicate]
Number without remainder:
$result = (int) (1779 / 30);
The remainder:
$result = 1779 % 30;
solved Write the division and the remainder on two variables using php [duplicate]