whats wrong with this code? instead of returning me the date: Aug 23, 2010 12:55:54
its return 'A' which is the first letter only of the month ''Aug''?
PHP Code:
enum playerinfo
{
name[33] = 0,
joindate[42]
}
new PlayerData[33][playerinfo]
PHP Code:
new DateTime[42]
get_time("%b %d, %Y %X", DateTime, 41)
copy(PlayerData[id][joindate], 41, DateTime)
but DateTime is still 'Aug 23, 2010 12:55:54' and PlayerData[id][joindate] is 'A'