1
How can I add a certain value to an existing value each day other than the year. Something like:
$hoje = date('Y-m-d');
$amanha = date('Y-m-d', strtotime($hoje .' +1 day'));
if ($hoje != $amanha) {
somar 40 a 19000
}
//hoje imprime 19040, no dia seguinte imprime 19080 e assim por diante até o fim do ano.
It worked well, although I have made some modifications, thank you John !
– denis