Auto World
Boulevard
Car Culture
Chase
Entertainment
Fast & Furious
Greenlight
Hot Wheels
Johnny Lightning
M2 Machines
Mainline
Pop Culture
RLC
Racing Champions
Salão DieCast
Team Transport
![Whatsapp Whatsapp](local/img/icone_whatsapp.jpg?nocache=20250118074122)
// f_data_formatar function f_data_formatar($tipo,$data) { // transforma data // de YYYY-MM-DD para DD/MM/YYYY // de DD/MM/YYYY para YYYY-MM-DD // USA = YYYY-MM-AA // BRA = DD/MM/YYYY if ($data != "") { if ($tipo == "USA") { return(implode("-",array_reverse(explode("/",$data)))); } if ($tipo == "BRA") { return(implode("/",array_reverse(explode("-",$data)))); } } } ?>