skip to Main Content

How to skip some Dates Flutter

I try to display dates of weeks. but based on requirement i need to skip Saturday and Sunday every time. here is code of date list:- ListView.builder( itemCount: 7, shrinkWrap: true, itemBuilder: (context, index) => dateWidget(index), ), here is code…

VIEW QUESTION

addressing month date issue – PHP

$myDate = date('m-d-Y 00:00:00', strtotime($myDate)); if($debugs)echo"<br>myDate is: $myDate in line: ".__line__."<br>"; $mysqlstart = date('Y-m-d 00:00:00', strtotime($myDate)); if($debugs)echo"<br>mysqlstart is: $mysqlstart in line: ".__line__."<br>"; From the code above, I would like to show $myDate to the audience while passing $mysqlstart into a…

VIEW QUESTION
Back To Top
Search