<?php session_start(); if (isset($_SESSION['nombre'])) { header("location:index.php"); } require "../conection/fun_inicio.php"; $fun = new fun_inicio(); $msg = ""; if (isset($_POST['btnent'])) { $log = $_POST['txtusu']; $pas = md5($_POST['txtpas']); $msg = $fun->validarusuario($log, $pas); } if (isset($_GET['error'])) { $msg = "DEBE INICIAR SESION PARA ACCEDER"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <title>Login</title>
<?php session_start(); if (!isset($_SESSION['nombre'])) { header("location:login.php?error=1"); } require_once "../conection/fun_inicio.php"; $fun = new fun_inicio(); if (isset($_GET['emp'])) { $idempresa = $_GET['emp']; $datos = $fun->getDatosEmpresa($_SESSION['idusuario'], $idempresa); if ($datos) { $_SESSION['empresa_def_id'] = $datos['id']; //empresa por defecto : ID $_SESSION['empresa_def_nom'] = $datos['nombre']; $_SESSION['empresa_def_logo'] = $datos['logo']; } }
<?php session_start(); if (!isset($_SESSION['nombre'])) { header("location:login.php?error=1"); } require_once "../conection/fun_inicio.php"; $fun = new fun_inicio(); if ($fun->PaginaActual() !== "fc_new_egreso") { if ($fun->PaginaActual() !== "fv_new_ingreso") { if (isset($_GET['emp'])) { $idempresa = $_GET['emp']; $datos = $fun->getDatosEmpresa($_SESSION['idusuario'], $idempresa); if ($datos) { $_SESSION['empresa_def_id'] = $datos['id']; //empresa por defecto : ID $_SESSION['empresa_def_nom'] = $datos['nombre']; $_SESSION['empresa_def_logo'] = $datos['logo']; } } } }