Jump to content
Fórum Script Brasil
  • 0

sobre php e mysql


edsonl2666

Question

Bom galera eu fiz um site administrativo com painel e tudo certinho só que quando eu vou cadastrar um usuario para o painel cadastra vai de boa para o banco fica tudo certinho mais quando eu tento logar não loga mais um detalhe que eu vi ele não loga se eu cria um nome qualquer mais se eu coloca login admin e senha admin ele loga normal ¬¬ por que sera isso ?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

na onde amigo na index ?

<?php require_once('../Connections/config.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }

  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;    
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
}
?>
<?php
// *** Validate request to login to this site.
if (!isset($_SESSION)) {
  session_start();
}

$loginFormAction = $_SERVER['PHP_SELF'];
if (isset($_GET['accesscheck'])) {
  $_SESSION['PrevUrl'] = $_GET['accesscheck'];
}

if (isset($_POST['login'])) {
  $loginUsername=$_POST['login'];
  $password=$_POST['senha'];
  $MM_fldUserAuthorization = "nivel";
  $MM_redirectLoginSuccess = "painel.php";
  $MM_redirectLoginFailed = "index.php";
  $MM_redirecttoReferrer = false;
  mysql_select_db($database_config, $config);
      
  $LoginRS__query=sprintf("SELECT usuario, senha, nivel FROM dia_users WHERE usuario=%s AND senha=%s",
  GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text")); 
   
  $LoginRS = mysql_query($LoginRS__query, $config) or die(mysql_error());
  $loginFoundUser = mysql_num_rows($LoginRS);
  if ($loginFoundUser) {
    
    $loginStrGroup  = mysql_result($LoginRS,0,'nivel');
    
    //declare two session variables and assign them
    $_SESSION['MM_Username'] = $loginUsername;
    $_SESSION['MM_UserGroup'] = $loginStrGroup;          

    if (isset($_SESSION['PrevUrl']) && false) {
      $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];    
    }
    header("Location: " . $MM_redirectLoginSuccess );
  }
  else {
    header("Location: ". $MM_redirectLoginFailed );
  }
}
?>
<?
header('Content-Type: text/html; charset=utf-8');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Edson Designer - Gerenciador de site</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>

<body>
 <div id="box">

 <div id="header">

 <div id="header_logo">
 <a href="painel.php"><img src="images/logo.png" alt="" border="0"  /></a>
 </div><!-- header_logo -->
 </div> <!--header-->
  <div id="painel_de_login">
  
  <div class="alert">
  <strong>Para acessar o painel, você deve ter:</strong>
  <br />» Logado corretamente.
  <br />» Ter nivel de acesso.
  </div><!--alert-->
  
  <form method="POST" action="<?php echo $loginFormAction; ?>" name="login_erro">
  <fieldset>
     <legend>Você precisa logar-se</legend>
     <label>
     <span>Usuário</span>
     <input type="text" name="senha" />
     </label>
     
     <label>
     <span>Senha</span>
     <input type="password" name="login" />
     </label>
      
    <input type="submit" name="logar" value="Logar-se"  class="login_btn"/>  
     
  </fieldset>
  
  </form>
  
  </div><!-- painel de login -->
</div><!--box-->
</body>
</html>

Edited by edsonl2666
Link to comment
Share on other sites

  • 0

Eserra

nas linhas que você falo ta normal bom galera alguém souber me ajuda ai por que num posso deixar assim eu tava dando uma olhada aqui mais só loga com o login admin e senha admin se eu troco para qual quer coisa num loga e se eu crio outra conta a outra conta também não loga mais cria na tabela certinha com todos os dados mais não sei o por que não loga

Edited by edsonl2666
Link to comment
Share on other sites

  • 0
Eserra

nas linhas que você falo ta normal bom galera alguém souber me ajuda ai por que num posso deixar assim eu tava dando uma olhada aqui mais só loga com o login admin e senha admin se eu troco para qual quer coisa num loga e se eu crio outra conta a outra conta também não loga mais cria na tabela certinha com todos os dados mais não sei o por que não loga

Só loga com login e senha admin?

Ve se ele ta fazendo a consulta a tabela corretamente.

Não sei se você quer, mas eu tenho um sistema de login que eu mesmo fiz...

Esta na seção de Repositório de Scripts aqui mesmo no forum...

falou!

Edited by lucke
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652.1k
×
×
  • Create New...