I have a week calendar that holds events, and want that users can\'t add events for the past days. So I\'m tring to use a function like that:
if( strtotime($
Simpler ->
if(strtotime($this->day) < strtotime(date('Y-m-d'))) { ... } else { ... }