Hi Everyone
I have a small function for delivery dates that shows next days for delivery except a Sunday, I also need to remove a Satuday from the output too but not sure how to do it, if someone could help please
# Assign some delivery dates
$i=1;
$dayofweek=date("w"); //today as an integer
if (date(G)>13) {$i++ ;} // if time (G) past 2pm add day to skip tomorrow
while($i<=10)
{
if (($dayofweek+$i)%6) {
$smarty->append("del_days", strtotime("+".$i." day"));
}
$i++;
}