TimeStamp for dd/mm/yyyy

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
caetanovsk
User
Posts: 2

TimeStamp for dd/mm/yyyy

Post by caetanovsk »

Please, I am newbie in PHP. Need to convert TimeStamp field to dd/mm/yyyy. How to do this in PHPMaker 11 the Date field? I need guidance if step-by-step if possible.
The original field is as BIGINT

Thank you


scs
User
Posts: 694

Post by scs »

$date = date("d/m/Y", $your_field_name);

(Row_Renderd server event)

$this-><your_field_name>->ViewValue = $date;
$this-><your_field_name>->EditValue = $date;

How you gonna display it, depend on your program.


Post Reply