I have a controller function named updateoos(), a model for that function Outofserviceday and a table named outofservicedays. The table has 3 fields - id, userid, outofservicedays.
I want to get the out of service days from today to the last day of month
how to write a function in Outofserviceday model with two arguments today and monthedDday like.
function ($today $monthedDday) { }
In my controller I get the two dates
$today = date("Ymd");
$monthend=date("ymd", strtotime($today));
I edited all my mistakes

