Posts by Renan • 46 points
2 posts
-
1
votes1
answer277
viewsA: Create / Edit a file on the server (Apache)
Usually this type of error is permission... But to know for sure look for the error log of your host/server... If you have access to the machine and it is *Nix, you can run cat…
-
2
votes3
answers182
viewsA: Convert date type 2016-10-04 15:51:16 to, 04-10-2016 15:51:16 to SQL or PHP how to do?
I always use PHP’s Datetime class. DateTime::createFromFormat('Y-m-d H:m:s','2016-10-04 15:51:16')->format('d-m-Y H:m:s');