yeah... e.g.
I have a string which is called $last_date_posted which can be anything like: 20-10-03 and i want to change it to 10/20/03
so... i do something like this:
$last_date_posted = makedateuk($last_date_posted);
using the function in my set up include which is:
// change date to be uk style
function makedateuk($string){
????????? parse code to go here ???
return $string;
}
Really appreciate your help with this
Darren