I am trying to create a function that takes a unix timestamp from the mktime() function as an argument, and then displays the full date for my birthday in the year 2025.
So far I have created the function as:
function displayDate(mktime(2025-07-22))
I am very new at php and not sure if this would be the proper way to start. If it's acceptable, how do retrieve that information for the echo statement that displays the full date, ie, Thursday July 22 2025. Any help would be much appreciated!