sandhya Posted February 19, 2009 Share Posted February 19, 2009 Hi all, I "ve a form named schedule.php where i can display the schedule of a particular month as a calender. I"ll get month,year to that form on GET method. using that month & year i"ve to find out the last date of the month. i"ve a code to find last date of the previous month or last month 1 year later or 1 year before like this. but here i want to get for random month. Any suggestions please. Here i'm giving the code line. $endate=date('t',strtotime('-1 month'));//for previous month $endate1=date('t',strtotime('+1 month'));//for next month But i need random. can i use a variable in the place '-1 month' or '+1 month'. Please help me. Link to comment https://forums.phpfreaks.com/topic/145883-to-find-last-day-of-a-particular-month/ Share on other sites More sharing options...
Mchl Posted February 19, 2009 Share Posted February 19, 2009 Yes you can. $date = $_GET['year']."-".$_GET['month']; $endate1=date('t',strtotime($date)); Link to comment https://forums.phpfreaks.com/topic/145883-to-find-last-day-of-a-particular-month/#findComment-765954 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.