1
Hello,
How I can store the score with milliseconds in flashgames module ?
$timestamp = strtotime($score);
$formatedTime = strftime("%H:%M:%S", $timestamp);
$hours = substr($formatedTime, 0, 2);
$minutes = substr($formatedTime, 3, 2);
$seconds = substr($formatedTime, 6, 2);
$numSeconds = (($hours * 60) * 60) + ($minutes * 60) + $seconds;
$score = $numSeconds;