Month I would like to be able to select in my query the 25th day of the month before the present, regardless of whether we are at 2 or 27 in the current month, for example
something like:
Today's day 07/27/2018
<?=$date; ?>
Result of $ date
25/06/2018
e used the query:
$lastday = date('t',strtotime('last month'));
What results in the last day of last month but I want to get the day (25), month (previous to present) and year (present year)