Esta se refresca al jalar el dato de esta otra
Código PHP:
Ver original<?php
/*<!-- Llamamos a las funciones en PHP -->*/
require_once '../../app/php/controller/app.controller.php';
if (!empty($_SESSION["USER_MATRICULA"])) { echo '
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Salud Colectivos</title>
<!-- Bootstrap nucleo CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- FontAwesome nucleo CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<!-- Estilos personalizados para esta plantilla -->
<link rel="stylesheet" href="../css/dashboard.css">
</head>
<body>';
/*<!-- Mostramos el Menu usando Bootstrap -->*/
include_once '../dashboard/dashboard.cliente.php';
if (!empty($_POST['DES_CLIENTE'])) { $DES_CLIENTE = addslashes(getParam
($_POST['DES_CLIENTE'],""));
/*<!-- Tabla Listado de Casos Pendientes -->*/
$Q_TB_CLIENTE = consulta_Tabla_Cliente_por_Descripcion($DES_CLIENTE);
$TOT_TB_CLIENTE = $Q_TB_CLIENTE->fetchAll();
if (!empty($TOT_TB_CLIENTE)) { echo '
<div class="container-fluid">
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th>DES_CLIENTE</th>
<th>DES_BROKER</th>
</tr>
</thead>';
foreach ($TOT_TB_CLIENTE as $rgCli) {
switch ($_SESSION["RAMO"]) {
case '10A':
echo '
<tbody>
<tr>
<td>
<!-- Aqui mostramos el Cliente -->';
$LINK = "temporal.php?COD_CLIENTE=" . $rgCli['COD_CLIENTE'] . "&COD_BROKER=" . $rgCli['COD_BROKER_EPS'];
echo '
<a href=\'' . $LINK . '\'target=\'_blank\' onClick=\'window.open(this.href,this.target,"Width=1,Height=1");return false;\'>'
'</a>';
echo '
</td>';
echo '
<td>
<!-- Aqui mostramos el Broker -->';
$Q_DES_BROKER = consulta_Tabla_Broker($rgCli['COD_BROKER_EPS']);
$TOT_DES_BROKER = $Q_DES_BROKER->fetchAll();
foreach ($TOT_DES_BROKER as $rsBrk) {
}
echo '
</td>
</tr>
</tbody>';
break;
case '10B':
echo '
<tbody>
<tr>
<td>
<!-- Aqui mostramos el Cliente -->';
$LINK = "temporal.php?COD_CLIENTE=" . $rgCli['COD_CLIENTE'] . "&COD_BROKER=" . $rgCli['COD_BROKER_PPS'];
echo '
<a href=\'' . $LINK . '\'target=\'_blank\' onClick=\'window.open(this.href,this.target,"Width=1,Height=1");return false;\'>'
'</a>';
echo '
</td>';
echo '
<td>
<!-- Aqui mostramos el Broker -->';
$Q_DES_BROKER = consulta_Tabla_Broker($rgCli['COD_BROKER_PPS']);
$TOT_DES_BROKER = $Q_DES_BROKER->fetchAll();
foreach ($TOT_DES_BROKER as $rsBrk) {
}
echo '
</td>
</tr>
</tbody>';
break;
}
} echo '
</table>
</div>
</div>';
} else {
echo '
<div class="container-fluid">
<h3 class="sub-header text-success"><em>No existe el Cliente</em></h3>
</div>';
}
}
$conexion = null;
echo '
<!-- Nucleo JavaScript en Bootstrap - Situado al final del documento para que las páginas se cargan más rápido -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://getbootstrap.com/dist/js/bootstrap.min.js"></script>
<script src="../../app/js/controller/app.js"></script>
</body>';
} else {
/*<!-- Funcion destruir sessiones -->*/
salir_del_Sistema();
}
?>
La funcion que refresa es esta
Código Javascript
:
Ver original<!-- Funcion cargar y cerrar IFrame -->
function recargar_pagina(){
window.parent.opener.parent.opener.document.location.reload();
window.parent.opener.parent.close();
window.close();
}
En mi equipo con WampServer, funciona sin problemas,
Pero cuando lo ejecuto en mi web alojada en HostinGer sale el siguiente mensaje
Código HTML:
Ver original¡Error!: SQLSTATE[42000] [1226] User 'u728431827_admin' has exceeded the 'max_user_connections' resource (current value: 3)