<div class="col-xs-5"> <label >Segundo Apellido</label> <input type="text" class="form-control" id="apellido2" name="apellido2" placeholder=""/> </div> <div class="col-xs-5"> <label >Fecha de Nacimiento</label> <input type="text" class="form-control" name="fechaNac" id="fechaNac" data-inputmask="'alias': 'mm/dd/yyyy'" data-mask/> </div> <div class="col-xs-5"> <label >Dirección</label> <input type="text" class="form-control" id="direccion" name="direccion" placeholder=""/> </div> <?php $sql = "select codigoCiudad, nombreCiudad from ciudades order by nombreCiudad"; $res = ejecutarSQL($sql); $arreglo_php = array(); if ($res->num_rows == 0) { array_push($arreglo_php, "No hay datos"); } else { while ($palabras = mysqli_fetch_array($res)) { array_push($arreglo_php, $palabras["nombreCiudad"]); } } ?> <script type="text/javascript"> $(function(){ var autocompletar = new Array(); <?php //Esto es un poco de php para obtener lo que necesitamos for ($p = 0; $p < count($arreglo_php); $p++) {
<script type="text/javascript"> setTimeout("location.href='form_principal.php'",3000); </script> <?php } else { echo "<div style=\"text-align:center\">Tu Usuario y Contraseña son incorrectas, vuelva a intentarlo"; ?> <script type="text/javascript"> setTimeout("location.href='form_login.php'",3000); </script> <?php } } else { if ($file['Perfil'] == 2) { $sql2 = "select a.nombreAfiliado, a.apellido1Afiliado, e.apellido2Afiliado \n\t\t \tfrom afiliados a, usuarios u where a.identificacionAfiliado=u.identificacion and u.nombreUsuario='{$usuario}';"; $res2 = ejecutarSQL($sql2); $file2 = mysqli_fetch_array($res2); $_SESSION["s_Usuario"] = $usuario; $_SESSION["s_Clave"] = $clave; $_SESSION["s_Nombres"] = $file2['nombreAfiliado']; $_SESSION["s_Apellido1"] = $file2['apellido1Afiliado']; $_SESSION["s_Apellido2"] = $file2['apellido2Afiliado']; echo "<div style=\"text-align:center\">Bienvenido al Sistema " . $_SESSION["s_Nombres"] . " " . $_SESSION["s_Apellido1"] . " " . $_SESSION["s_Apellido2"]; echo "<br />Espera un momento</div>"; ?> <script type="text/javascript"> setTimeout("location.href='form_principal.php'",3000); </script> <?php } }
function saveRegister($user, $typeAc, $comments) { $sql = "insert into auditoria values (NULL, '{$user}','{$typeAc}',NOW(),'{$comments}');"; $link = ejecutarSQL($sql); if (mysql_affected_rows($link) > 0) { return true; } else { return false; } }