Ver Mensaje Individual
  #30 (permalink)  
Antiguo 22/11/2011, 15:53
webankenovi
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: inicio de sesion

prueba y me cuentas

Código PHP:
Ver original
  1. <?php require_once('Connections/config.php');
  2. if (!function_exists("GetSQLValueString")) {
  3.     function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
  4.     {
  5.       if (PHP_VERSION < 6) {
  6.         $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  7.       }
  8.      
  9. $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  10.      
  11.       switch ($theType) {
  12.         case "text":
  13.           $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
  14.           break;    
  15.         case "long":
  16.         case "int":
  17.           $theValue = ($theValue != "") ? intval($theValue) : "NULL";
  18.           break;
  19.         case "double":
  20.           $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
  21.           break;
  22.         case "date":
  23.           $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
  24.           break;
  25.         case "defined":
  26.           $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
  27.           break;
  28.       }
  29.       return $theValue;
  30.     }
  31.     }
  32.      
  33.     mysql_select_db($database_config, $config);
  34.     $query_Recordset1 = "SELECT * FROM FT_USUARIOS";
  35.     $Recordset1 = mysql_query($query_Recordset1, $config) or die(mysql_error());
  36.     $row_Recordset1 = mysql_fetch_assoc($Recordset1);
  37.     $totalRows_Recordset1 = mysql_num_rows($Recordset1);
  38.      
  39.     $colname_Recordset2 = "-1";
  40.     if (isset($_SESSION['MM_username'])) {
  41.         $colname_Recordset2 = $_SESSION['MM_username'];
  42.         }
  43.        
  44.     mysql_select_db($database_config, $config);
  45.     $query_Recordset2 = sprintf("SELECT usuario FROM FT_USUARIOS WHERE usuario = %s", GetSQLValueString($colname_Recordset2, "text"));
  46.     $Recordset2 = mysql_query($query_Recordset2, $config) or die(mysql_error());
  47.     $row_Recordset2 = mysql_fetch_assoc($Recordset2);
  48.     $totalRows_Recordset2 = mysql_num_rows($Recordset2);
  49.  
  50.     // *** Validate request to login to this site.
  51.     if (!isset($_SESSION)) {
  52.     }
  53.      
  54.     $loginFormAction = $_SERVER['PHP_SELF'];
  55.    
  56.     if (isset($_GET['accesscheck'])) {
  57.       $_SESSION['PrevUrl'] = $_GET['accesscheck'];
  58.     }
  59.      
  60.     if (isset($_POST['usuario'])) {
  61.       $loginUsername=$_POST['usuario'];
  62.       $password=$_POST['pass'];
  63.       $MM_fldUserAuthorization = "";
  64.       $MM_redirectLoginSuccess = "?seccion=welcome";
  65.       $MM_redirectLoginFailed = "?seccion=falleuser";
  66.       $MM_redirecttoReferrer = false;
  67.       mysql_select_db($database_config, $config);
  68.      
  69.       $LoginRS__query=sprintf("SELECT usuario, pass FROM FT_USUARIOS WHERE usuario=%s AND pass=%s",
  70.         GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));
  71.        
  72.       $LoginRS = mysql_query($LoginRS__query, $config) or die(mysql_error());
  73.       $loginFoundUser = mysql_num_rows($LoginRS);
  74.      
  75.       if ($loginFoundUser) {
  76.          $loginStrGroup = "";}
  77.        
  78.         //declare two session variables and assign them
  79.         $_SESSION['MM_Username'] = $loginUsername;
  80.         $_SESSION['MM_UserGroup'] = $loginStrGroup;  
  81.        
  82.            
  83.  
  84.         header("Location: " . $MM_redirectLoginSuccess );
  85.        
  86. }?>
  87.     <div id="content-box">
  88.             <div class="padding">
  89.                 <div class="login" id="element-box">
  90.                     <div class="t">
  91.                         <div class="t">
  92.                             <div class="t"></div>
  93.                         </div>
  94.                     </div>
  95.                     <div class="m">
  96.      
  97.                         <h1>Ingreso de Usuarios Registrados</h1>
  98.                        
  99.                                 <div id="section-box">
  100.                 <div class="t">
  101.                     <div class="t">
  102.                         <div class="t"></div>
  103.                     </div>
  104.                 </div>
  105.                 <div class="m">
  106.             <form action="<?php echo $loginFormAction; ?>" style="clear: both;" id="form-login" name="login" method="POST">
  107.         <p id="form-login-username">
  108.             <label for="modlgn_username">Usuario</label>
  109.             <input type="text" size="15" class="inputbox" id="modlgn_username" name="usuario">
  110.         </p>
  111.      
  112.         <p id="form-login-password">
  113.             <label for="modlgn_passwd">Contraseña</label>
  114.             <input type="password" size="15" class="inputbox" id="modlgn_passwd" name="pass">
  115.         </p>
  116.             <p style="clear: both;" id="form-login-lang">
  117.            
  118.         <div class="button_holder">
  119.         <div class="button1">
  120.             <div class="next">
  121.                 <a onclick="login.submit();">
  122.                     Entrar</a>
  123.      
  124.             </div>
  125.         </div>
  126.         </div>
  127.         <div class="clr"></div>
  128.         <input type="submit" value="Entrar" style="border: 0; padding: 0; margin: 0; width: 0px; height: 0px;">
  129.        
  130.        
  131.         </form>
  132.     <div class="clr"></div>
  133.                 </div>
  134.     <div class="b">
  135.                     <div class="b">
  136.                         <div class="b"></div>
  137.                     </div>
  138.                 </div>
  139.             </div>
  140.            
  141.                         <p>Ingresa un nombre de usuario y contraseña validos para acceder al Sistema.</p>
  142.                         <p>
  143.                             <a href="javascript:history.back(1)">Regresar a la Pagina Anterior</a>
  144.                         </p>
  145.                         <div id="lock"></div>
  146.                         <div class="clr"></div>
  147.                     </div>
  148.         <div class="h_green" id="border-top">
  149.             <div>
  150.                 <div>
  151.                     <div class="adminform">Insurance Broker Sistem By ARTEM LABS, CA</div>
  152.                 </div>
  153.             </div>
  154.         </div>
  155.                     <div class="b">
  156.                         <div class="b">
  157.                             <div class="b"></div>
  158.                         </div>
  159.                     </div>
  160.                 </div>
  161.                             <div class="clr"></div>
  162.             </div>
  163.     </div>
  164.         <div id="border-bottom"><div><div></div></div>
  165.     </div>
  166.     </body><?php
  167.     mysql_free_result($Recordset1);
  168.      
  169.     mysql_free_result($Recordset2);
  170.     ?>