Estoque
// 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)))); } } } ?>