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

Linux, Apache, MySQL, PHP

 
AnswerRe: PHP, MySQL and Apache Pin
ronakT26-Jan-13 5:32
ronakT26-Jan-13 5:32 
Questioncan not get data from url when use method post paramater using php. because page use token. please me Pin
aa_zz4-Nov-12 22:22
aa_zz4-Nov-12 22:22 
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 
PHP
<?php
$date1 = "2012-10-04 22:45:00";
$date2 = "2013-12-05 13:44:01";
$diff = abs(strtotime($date2) - strtotime($date1));
$years = floor($diff / (365*60*60*24));
$months = floor(($diff - $years * 365*60*60*24) / (30*60*60*24));
$days = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24)/ (60*60*24));
$hours = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24 - $days*60*60*24)/ (60*60));
$minuts = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24 - $days*60*60*24 - $hours*60*60)/ 60);
$seconds = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24 - $days*60*60*24 - $hours*60*60 - $minuts*60));
printf("%d years, %d months, %d days, %d hours, %d minuts\n, %d seconds\n", $years, $months, $days, $hours, $minuts, $seconds);
die;
?>

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 
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 

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.