I have read many ways to do this when the date is a simple variable, but how would I format the date to read "M, j" meaning "May, 5" when my php statement is the following?
echo "$row->nick $row->lastname, ($row->updated_at)";
that now outputs this:
John Smith, (2017-05-10 12:18:12)
I want it to read:
John Smith, (May 10)
Thanks