How do I find the number of seconds from a certain date to the current?
I have logged in my database a completion date within the past year and I want to figure out how many seconds it has been since the completion date until now.
I know the strtotime command is fairly versatile and I have tried the following without the right conclusion:
strtotime("since ".$completion_date);
//and
strtotime("from ".$completion_date);
What do I need to do to fix this?
thanks.