Another date time problem.
I have a Time when something gets busy like -> "2021-02-24 12:00:00"(string)
I have the current date like this -> date('Y-m-d h:i:s') (string)
I need to calculate how many hours : minutes : seconds passed between the two. For example (gets busy at) 2021-02-14 15:00:00 current time is 2021-02-14 16:15:00 so I need to show something similar to this: 01:15:00.
But what if more than 99 hours passed, how do I make it so it looks like this -> 120:02:36.
The question I asked yesterday was not specified enough so I got some answers in here: (I know it's my bad)
but in the end I can't use it for this problem.