- Posts: 34
- Thank you received: 4
Please Log in or Create an account to join the conversation.
// (3) Filter Dates : Upcoming
elseif ($filterTime == 3)
{
// Period with no weekdays selected
if (in_array($get_date, $perioddates)
&& $only_startdate
&& (strtotime($StDate) > strtotime($datetime_today))
)
{
$AllDatesFilterTime[] = $fD;
}
// Period with weekdays selected
elseif (in_array($get_date, $perioddates)
&& !$only_startdate
&& strtotime($get_date) > strtotime($datetime_today)
&& strtotime($date_get_date . ' ' . $time_startdate) > strtotime($datetime_today)
)
{
$AllDatesFilterTime[] = $fD;
}
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.