ok
thanks i'm going to try that, but I was hoping not to have to modify my sql statment.
this is all part of a loop that sends out multiple emails according to my SQL statment.
its not just retieving a value and printing it on the page.
it took me forever to get that loop working and the staments right.
All I was hopping to do was get my
2005/03/04 and change it to 04/03/2005 by using somethign like
$d = explode("/",$$event_date);
$newdate = $d[2]."/".$d[1]."/".$d[0];
WHITHIN my loop, except I just cant work out the explode as my date in the table row is already "exploded" with /
But a workaournd that would be perfect if you could point me towards where I'm going wrong in my explode function to achieve the desired result.
I have no doubt what you suggested works great, but I'm not too sure how to make it work within my current code.
Thanks,
Vinny