phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] phpgwapi/inc/adodb/tests/time.php, 1.1.2.1


From: nomail
Subject: [Phpgroupware-cvs] phpgwapi/inc/adodb/tests/time.php, 1.1.2.1
Date: Thu, 30 Dec 2004 05:51:48 +0100

Update of /phpgwapi/inc/adodb/tests
Added Files:
        Branch: proposed-0_9_18-branch
          time.php

date: 2004/12/30 04:51:48;  author: skwashd;  state: Exp;  lines: +17 -0

Log Message:
switch to ADOdb
=====================================================================
<?php

include_once('../adodb-time.inc.php');
//adodb_date_test();
?>
<?php 
//require("adodb-time.inc.php"); 

$datestring = "1963-12-04"; // string normally from mySQL 
$stringArray = explode("-", $datestring);
$date = adodb_mktime(0,0,0,$stringArray[1],$stringArray[2],$stringArray[0]); 

$convertedDate = date("d-M-Y", $date); // converted string to UK style date

echo( "Birthday: $convertedDate" ); //why is string returned as one day (3 not 
4) less for this example??

?>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]