Be care: i've looked "DATE_FORMAT(" work, but "DATE_FORMAT (" no ( with blank before "("... )
Thanks! I'll try the php way first (is the one I understand the best).
It begin to work with this:
$mysql_date = $row["date"];
$frag = explode("-",$mysql_date);
$array = array ($frag[2], $frag[1], $frag[0]);
$date = implode ("/", $array);
I don't know if the mysql way will work, cause the table "clips" has fields that are not Dates!
I'll mark as resolved when it works
But the "php way" gives "26-09-2003" instead of "26-09-03"... Now with some php string operation, perhaps I can isolate the last 03 from 2003...
Thanks again!