function insertaCotizacion($cliente, $identificadorDocumento) { session_cache_limiter('private_no_expire'); if (isset($_SESSION['user'])) { $data = new pegaso(); $data->insertaCotizacion($cliente, $identificadorDocumento); $this->consultarCotizaciones(); } else { $e = "Favor de Iniciar Sesión"; header('Location: index.php?action=login&e=' . urlencode($e)); exit; } }