Jens,

I didn't tested it but I think you have to replace the backslashes with slashes since the date format must be MM/DD/YYYY...

Code:

case substr($date,3,1)='\'
; valid format
case substr($date,5,1)='\'
; reformat date
$date=split($date,'\')
$date=$date[1]+'\'+$date[2]+'\'+$date[0]



Must be...

Code:

case substr($date,3,1)='/'
; valid format
case substr($date,5,1)='/'
; reformat date
$date=split($date,'/')
$date=$date[1]+'/'+$date[2]+'/'+$date[0]



Feeding the baby again.. or did you had a very short and broken night
_________________________
Co