I am implementing a financial system and I need to limit billing for a maximum of 2 months.
but without success ...
<?php
$mes_seguinte2 = str_replace('0', '', date('m', strtotime('+2 months', strtotime(date('Y-m-d')))));
$ultimoMesMAIS2 = str_replace('0', '', date('m', strtotime('+2 months', strtotime(date('m', $dataEmpresa['mes_gerado_receitas'])))));
if($mes_seguinte2 > $ultimoMesMAIS2){
$resultado_subtracao = $mes_seguinte2 - $ultimoMesMAIS2;
}elseif($mes_seguinte2 < $ultimoMesMAIS2){
$resultado_subtracao = $ultimoMesMAIS2 - $mes_seguinte2;
}
if ($mes_seguinte2 == $ultimoMesMAIS2) {
# NAO PROSSEGUE
echo '<script>alert("Faturamento ja gerado para o mes seguinte.")</script>';
}else{
# PROSSEGUE NORMALMENTE ...
}
?>
If someone thinks otherwise, it's fine too ...