if($id==NULL){
$seccion= new cls_tbl_seccion();
$resul=$seccion->lista("select * from tbl_arpana_seccion where int_tipo=3 order by pk_seccion",1);
$id2=$resul[0]['pk_seccion'];
$seccion= new cls_tbl_seccion($id2);
}else{
$seccion= new cls_tbl_seccion($id);
}?>
echo $seccion->gettxt_subtitulo(); ?>
$linea = new cls_tbl_linea_trabajo();
$sql="select * from tbl_arpana_linea_trabajo order by pk_linea_trabajo";
$resultado=$linea->lista($sql,1);
$i=0;
$lin=NULL;
$filas = count($resultado);
while($i<$filas)
{
if($lin_b==utf8_encode(friendly_url($resultado[$i]['txt_titulo'])))
{
$lin=$resultado[$i]['pk_linea_trabajo'];
}
$i++;
}
if($lin==NULL&&$id==NULL){
$lin_trabajo= new cls_tbl_linea_trabajo();
$sql="select * from tbl_arpana_linea_trabajo where fk_seccion=".$id2." order by pk_linea_trabajo";
$res=$lin_trabajo->lista($sql,1);
$lin=$res[0]['pk_linea_trabajo'];
$linea= new cls_tbl_linea_trabajo($lin);
}
if($lin==NULL&&$id!=NULL){
$lin_trabajo= new cls_tbl_linea_trabajo();
$sql="select * from tbl_arpana_linea_trabajo where fk_seccion=".$id." order by pk_linea_trabajo";
$res=$lin_trabajo->lista($sql,1);
$lin=$res[0]['pk_linea_trabajo'];
$linea= new cls_tbl_linea_trabajo($lin);
}
else{
$linea= new cls_tbl_linea_trabajo($lin);
}
?>
echo $linea->gettxt_titulo(); ?>
echo $linea->gettxt_descripcion(); ?>