Click here to Skip to main content
15,887,683 members
Home / Discussions / Linux, Apache, MySQL, PHP
   

Linux, Apache, MySQL, PHP

 
Questionhelp for smtp and ssl Pin
b-moumen17-Oct-12 7:53
b-moumen17-Oct-12 7:53 
Questionhow to get date difference Pin
Member 915215629-Sep-12 1:13
Member 915215629-Sep-12 1:13 
AnswerRe: how to get date difference Pin
Peter_in_278029-Sep-12 2:09
professionalPeter_in_278029-Sep-12 2:09 
GeneralRe: how to get date difference Pin
Member 915215629-Sep-12 2:12
Member 915215629-Sep-12 2:12 
GeneralRe: how to get date difference Pin
Peter_in_278029-Sep-12 2:22
professionalPeter_in_278029-Sep-12 2:22 
AnswerRe: how to get date difference Pin
Deepthi.214564-Oct-12 20:11
Deepthi.214564-Oct-12 20:11 
AnswerRe: how to get date difference Pin
Anilannu6-Oct-12 6:30
Anilannu6-Oct-12 6:30 
AnswerRe: how to get date difference Pin
Mohibur Rashid9-Oct-12 21:25
professionalMohibur Rashid9-Oct-12 21:25 
If you searched on google you would find 1000's of solutions. this is copied from PHP site

PHP
<?php
$td = time_diff($timestamp1-$timestamp2); // has to be a positive result
$td .= ($td=="now")? "":" ago"; // in this example "ago"
echo $td;

function time_diff($s){
   
    $time = get_post_time('G', true, $post);
    $s = time() - $time;

    if($s>=1) {
    $td = "$s sec";
    }  

    if($s>59) {
        $m = (int)($s/60);
        $s = $s-($m*60); // sec left over
        $td = "$m min"; if($s>1) $td .="s";
    }
    if($m>59){
        $hr = (int)($m/60);
        $m = $m-($hr*60); // min left over
        $td = "$hr hr"; if($hr>1) $td .= "s";
        if($m>0) $td .= ", $m min";
    }
    if($hr>23){
        $d = (int)($hr/24);
        $hr = $hr-($d*24); // hr left over
        $td = "$d day"; if($d>1) $td .= "s";
        if($d<3){
            if($hr>0) $td .= ", $hr hr"; if($hr>1) $td .= "s";
        }
    }
    return $td;
}
?>

I wish I could believe there is an after life.

QuestionHosting PHP application locally Pin
awedaonline20-Sep-12 5:24
awedaonline20-Sep-12 5:24 
AnswerRe: Hosting PHP application locally Pin
Mohibur Rashid22-Sep-12 3:13
professionalMohibur Rashid22-Sep-12 3:13 
GeneralRe: Hosting PHP application locally Pin
awedaonline23-Sep-12 21:19
awedaonline23-Sep-12 21:19 
AnswerRe: Hosting PHP application locally Pin
maba0018-Oct-12 19:14
maba0018-Oct-12 19:14 
Questionlearn php Pin
Stephan A.18-Sep-12 0:50
Stephan A.18-Sep-12 0:50 
AnswerRe: learn php PinPopular
Richard MacCutchan18-Sep-12 1:50
mveRichard MacCutchan18-Sep-12 1:50 
GeneralRe: learn php Pin
Stephan A.18-Sep-12 13:46
Stephan A.18-Sep-12 13:46 
GeneralRe: learn php PinPopular
Richard MacCutchan18-Sep-12 21:32
mveRichard MacCutchan18-Sep-12 21:32 
GeneralRe: learn php Pin
Andrei Straut18-Sep-12 22:29
Andrei Straut18-Sep-12 22:29 
GeneralRe: learn php Pin
Richard MacCutchan18-Sep-12 22:46
mveRichard MacCutchan18-Sep-12 22:46 
JokeRe: learn php Pin
Andrei Straut18-Sep-12 22:48
Andrei Straut18-Sep-12 22:48 
GeneralRe: learn php Pin
Richard MacCutchan18-Sep-12 22:53
mveRichard MacCutchan18-Sep-12 22:53 
GeneralRe: learn php Pin
Stephan A.19-Sep-12 2:40
Stephan A.19-Sep-12 2:40 
GeneralRe: learn php Pin
User 171649219-Sep-12 2:50
professionalUser 171649219-Sep-12 2:50 
GeneralRe: learn php Pin
Stephan A.19-Sep-12 3:08
Stephan A.19-Sep-12 3:08 
GeneralRe: learn php Pin
User 171649219-Sep-12 3:20
professionalUser 171649219-Sep-12 3:20 
GeneralRe: learn php Pin
Richard MacCutchan19-Sep-12 3:55
mveRichard MacCutchan19-Sep-12 3:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.