Support

Account

Home Forums Front-end Issues Format date-time picker output Reply To: Format date-time picker output

  • Cant you just split it into 2 variables?

    $date = date(‘d-m-y’);
    $time = date(‘H:i’);

    <?php echo “” . $date . “<br/>” . $time; ?>

    Obviously don’t know the context in which you’re using it, but that should work.

    hth

    webecho