PHP: I need a lil help
PHP: I need a lil help
Out of context: Reply #12
- Started
- Last post
- 13 Responses
- ashley0
This is the function I created to do the same thing:
function timestamptodate($timestamp){
return substr($timestamp, 4, 2) . "/" . substr($timestamp, 6, 2) . "/" . substr($timestamp, 0, 4);
}