Posted by Michele
2017-04-24

Hi Tom, how can i insert a date field eg. dd / mm / yy. Thank you
Posted by Tom
2017-04-26

If you mean you want to change the output foramt of a date fileld, you can do so by editing web/staff/codelib/df.fl.(table-name).inc.php. Open the file and find the date field you want the change the outout format of. For example,
'my-date-field'=>array(
...................
...................
XA_FORMAT=>'Y-m-d H:i:s',
...................
...................
),
XA_FORMAT defines the output format of the field. For "dd / mm / yy", set it to 'd/m/y'