How could I convert date in format,like "20020115" to a format, like "Jan 15th, 2002"?
Thanks
With strtotime and date using your wanted format-string. Like this:
print date("M dS, Y", strtotime("20020115"));