uf_obteneroperacion();
switch ($ls_operacion)
{
case "GUARDAR":
$lb_valido=true;
$ls_nomfot="";
$ls_nomfot=$_FILES['txtfotper']['name'];
$ls_cedper=$_POST["txtcedper"];
if ($ls_nomfot!="")
{
$ls_nomfot=$ls_cedper.substr($ls_nomfot,strrpos($ls_nomfot,"."));
}
$ls_tipfot=$_FILES['txtfotper']['type'];
$ls_tamfot=$_FILES['txtfotper']['size'];
$ls_nomtemfot=$_FILES['txtfotper']['tmp_name'];
$ls_nomfot=$io_personal->uf_upload($ls_nomfot,$ls_tipfot,$ls_tamfot,$ls_nomtemfot);
}
?>