I found a simple job. Just use underscores for spaces and make tr in a CGI script before converting to date. It looks something like this:
stamp="$(echo $stamp|tr _ ' '|xargs -0 date -d)"
Then use a date that looks something like this:
26_Oct_2010_11:57:56_CDT
which translates to:
date -d "26 Oct 2010 11:57:56 CDT"
User1
source share