My brain seems to be stoped, and I am looking for a help.
I have the following variables:
$start_t = 1;
$start_n = 2;
$end_t = 6;
$end_n = 5;
and I like to check all the logical combinations between the $start_t and $start_n AND $end_t and $end_n.
At the time I have the following:
if($start_t >= $start_n && $end_t >= end_n)
{ // Do stuff }
elseif($start_t < $start_n && $end_t >= $end_n)
{ // Do stuff }
elseif($start_t >= $start_n && $end_t < $end_n)
{ // Do stuff }
elseif($start_t < start_n && $end_t < $end_n)
{ // Do stuff }
Do you beleave that is there any other combination that I cannot see ? I mean between the $start_t, $start_n And $end_t and $end_n.
And just for the shake, is there any way to calculate all the available combinations ?
Thanks :)

$start_t == $start_n– Naryl Jan 11 at 10:34