Im getting a result from a SQL query im running which outputs the following date ($mydate) (05/02/2011) .... It is formatted as dd/mm/yyyy ... When i run
date('l jS \of F Y',strtotime($mydate))
Im getting a completely different date to what is inputted, im gathering this is because im not using the mm/dd/yyyy format.
How would i go about swapping it around for it to work properly?
Cheers.