I have used mktime() function in my code. And it prints this: Feb-12-1998. I wanna convert this something like that: 02-12-1998. But in my language it has to be 12-02-1998. Im kind of confused. Some help would be great.
echo(date("M-d-Y",mktime(0,0,0,2,12,98))."<br />");