01.07.2016, 17:11
To turn a timestamp into readable date-time use ctime library: http://forum.sa-mp.com/showthread.ph...ighlight=ctime
to turn it into a readable one thru the mysql query itself use something like this
in your query (change parameters to suit your needs, this example was taken from stackoverflow)
If you want to save the timestamp itself for later use in your gamemode I guess first one is the way to go.
to turn it into a readable one thru the mysql query itself use something like this
PHP код:
DATE_FORMAT(FROM_UNIXTIME(`user.registration`), '%e %b %Y') AS 'date_formatted'
If you want to save the timestamp itself for later use in your gamemode I guess first one is the way to go.