Hi
$G_CurrentDate= concat_date_time( sysdate( ),systime( ));
$G_CurrentDate=sysdate();
Which one is the best and recommended practice?
sjain (BOB member since 2009-04-17)
Hi
$G_CurrentDate= concat_date_time( sysdate( ),systime( ));
$G_CurrentDate=sysdate();
Which one is the best and recommended practice?
sjain (BOB member since 2009-04-17)
The latter as sysdate() returns date and time.
Werner Daehn (BOB member since 2004-12-17)