Change the date format in phpmyadmin

前端 未结 3 1081
花落未央
花落未央 2021-02-04 16:48

I m trying to change the date format in phpmyadmin. I m unable to change the format I want to change the format to dd-mmm-yyyy. How can I change the date format. Please help me

3条回答
  •  不要未来只要你来
    2021-02-04 17:29

    However, it's easy to change in PHP.

    $myinput='2005/15/09'; $sqldate=date('d-m-Y',strtotime($myinput)); echo $sqldate; 
    

    Now 09-15-2005.

提交回复
热议问题