$nroartic = explode('/',$_SERVER['PATH_INFO']);
$nroartic = trim($nroartic[1]);
if(empty($nroartic)) {
$nroartic = $_GET["nroartic"];
}
/* Definio las variables a utilizar */
$query = "";
$resultado = "";
/* Cadena de conexión */
require_once '../../../clss/conexion.clss.php';
$conexion = new conexion;
$co = $conexion->co;
// var_dump($conexion->co);
$conexion->selectDatabase("siicsalud");
include_once("../temp/oculto/funcionessiicsalud.php");
$query = "
SELECT
articautores.pathfotogrande, articautores.nombre, articautores.apellido, articautores.sexo, articautores.email,
articulos.funcion, articulos.titulocaste, articulos.fechapublicacion, articulos.fechaprimerapublicacion,
articulos.direcprof, articautores.ciudad, articautores.provincia, articautores.pais, articulos.codestilo
FROM
articautores
INNER JOIN
articulos
ON
articautores.nroartic = articulos.nroartic
WHERE
articautores.nroartic = $nroartic && principal = 1;
";
$resultado = mysql_query($query);
if($resultado) {
while($ob = mysql_fetch_object($resultado)) {
$foto = trim($ob->pathfotogrande);
$nombre = trim($ob->nombre);
$apellido = trim($ob->apellido);
$napell = $nombre." ".$apellido;
$napell = str_replace("Columnista Experto SIIC", "", $napell);
$napell = str_replace("Columnista Experta SIIC", "", $napell);
$napell = str_replace("Columnista experto SIIC", "", $napell);
$napell = str_replace("Columnista experta SIIC", "", $napell);
$napell = trim(str_replace("Dr.", "", $napell));
$napell = trim(str_replace("Dra.", "", $napell));
$sexo = trim($ob->sexo);
$funcion = trim($ob->funcion);
$titulocaste = trim($ob->titulocaste);
$titulocaste = strtoupper($titulocaste);
$fepu = trim($ob->fechapublicacion);
$fepu = NormalizarFecha($fepu);
$fepp = trim($ob->fechaprimerapublicacion);
$fepp = NormalizarFecha($fepp);
$dom='';
if(strlen($ob->direcprof)>3) $dom.=$ob->direcprof.', ';
if(strlen($ob->ciudad)>3) $dom.=$ob->ciudad.', ';
if(strlen($ob->provincia)>3) $dom.=$ob->provincia.', ';
if(strlen($ob->pais)>3) $dom.=$ob->pais;
$direcprof=$dom;
$email = trim($ob->email);
$email = trim($ob->email);
if(!empty($email)) {
$email1 = ''.$email.'';
if(!empty($direcprof)) {
$direcprof.= ", E-mail: ".$email1;
}
else {
$direcprof = "E-mail: ".$email1;
}
}
}
mysql_free_result($resultado);
$espp = especialidadprincipal($nroartic, $conexion->co);
$espp = str_replace('', '', $espp);
$espp = str_replace('', '', $espp);
$espr = relacionadas($nroartic, $conexion->co);
$espr = str_replace('
', '', $espr);
$espr = str_replace(' ', '', $espr);
$espr = str_replace('', ',', $espr);
$pub = publicaciones($nroartic, $conexion->co, 1);
}
include("autor_ensiic_datos.php");
?>