0
I am implementing a financial system and I need to limit the generation of revenues for a maximum of 2 months.
but to no avail...
<?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 anyone thinks otherwise tbm will do...
Take a look if any of these works.
– Valdeir Psr