Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Time difference(PHP)

djparashort

Recruit
Basic Member
Messages
7
Reaction score
0
Points
16
pano ko poh ba kukunin ang time difference nang dalawang time ?

Example poh
Time_start : 6:45:00 // Time (Type field)
End_time : 7:00:00 //Time (Type field)

Time_diff : 00:15:00 //Time (Type field)

pano ko po sya makukuha na ganyang ang magiging result nya ?

pro kahit ibang suggestions lng poh na makukuha koh ang time difference
please :help:
 
This was too easy

<?php
$to_time = strtotime("10:42:00");
$from_time = strtotime("10:21:00");
echo round(abs($to_time - $from_time) / 60,2). " minute";
 
Back
Top Bottom