I've never understood the various 'print' functions so I always find it easier to build my strings in other ways.....
$LessonDate = $filedata[1];
$LessonDate = split("/",$LessonDate);
$LessonDate = $LessonDate[2] . "-" . $LessonDate[1] . "-" . $LessonDate[0];
Is there any reason why my code is not as good as using print functions ?
The 'split' function worked for me, I was hoping that a date function existed to alter the format I had but using split was easy enough.
Roger, I'm interested in your idea of using VBA specifically for exporting from Outlook to MySQL. I'll send you a private mail with regards to that, don't worry if you can't help...
Rich