Si yo quiero que mi programa me habilite o deshabilite cierta funcionamiento en algun intervalo de timepo como le hago, ya que yo tengo algo asi, pero no funciona los intervalos son:
primer turno (6am. - 2pm.)
segundo turno (2pm. - 10pm.)
tercer turno (10pm. - 6am.)
Código PHP:
$tipoturno=0;
if(date(g)>=6 and (date(G)<=13 and date(i)<=59 and date(s)<=59)) { $tipoturno=1; echo "<br>Correspondiente al <b>'</b><font color='green'>PRIMER TURNO</font><b>'</b>";}
if(date(G)>=14 and (date(G)<=21 and date(i)<=59 and date(s)<=59)) { $tipoturno=2; echo "<br>Correspondiente al <b>'</b><font color='green'>SEGUNDO TURNO</font><b>'</b>";}
if(date(G)>=22 and (date(g)>=6 and date(i)<=59 and date(s)<=59)) { $tipoturno=3; echo "<br>Correspondiente al <b>'</b><font color='green'>TERCER TURNO</font><b>'</b>";}
gracias saludos!