I would not recommend doing MDY as that will become unsorted.

Using YYYYMMDD will always sort correctly.

My recommendation for a code change would be something like this.

PHP:
Break On Dim $Archive $Archive = Trim(Join(Split(@DATE,'/'),'-'))+'_'+Trim(Join(Split(@TIME,':'),'')) 'Archive Date for var is: ' + $Archive ?


Which produces the following including the time as an example.

Archive Date for var is: 2006-12-18_153635

Which translates to December 12, 2006 at 3:36 PM and 35 seconds

.