Jump to content
Fórum Script Brasil
  • 0

login


kildare

Question

pessoal, estou desenvolvendo um sisteminha, e comecei pelo login (claro), aparentemente está tudo correto, porém não estou conseguindo validar o usuário e senha no banco de dados, ou seja, está entrando direto para o menu principal. Será que alguém poderia me ajudar nessa. Segue abaixo linha de código para analise.

<!DOCTYPE html>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

<title>Controle de Protocolo</title>

<table align="center" valign="middle" width="100%" heigth="20%" />

<tr>

<td align=rigth><img src="imagens/logocartorio.gif" />

</td>

</tr>

</link>

<style><!-- input {border-style: groove;border-color: black;}

</style>

<tr bgcolor="black" <td align="center">

</td>

</tr>

<table align="center" valign="middle" width="100" heitgt="80">

<tr>

<td>

<form action="menu.php" method="post" name="main">

<table width="40%" align="center" border="0" cellspacing="1" cellpadding="1" bgcolor="black">

<tr bgcolor="#E0EEE0">

<td align="center">

<font face="Arial" color="black"><b><u>Protocolo</u></b></font>

</td>

</tr>

<tr bgcolor="#E0EEE0"><td align="center"><br />

<font face="Arial">Login</font><input type="text" name="login" />

<font face="Arial">Senha</font><input type="password" name="senha" /><br><br />

<input type="submit" name="logar" value="Entrar" style="color:background-color:whitesmoket" />

</form>

</td>

</tr>

</tr>

</table>

</table>

</html>

<?php

echo isset($erro)?$erro:'';

//variavel para conectar com banco de dados

$conexao = mysql_connect('localhost', 'root') or die ('Deu biziu!!!!');

$banco = 'protocolo';

mysql_select_db('Protocolo', $conexao);

if (isset($_POST['entrar']))

{

if ($usuario == $_POST['usuario'] && $senha == $_POST['senha'])

{

session_start();

$_SESSION['logado'] = true;

header('location:newsletter_list.php');

}

else

{

$erro = 'usuário ou senha inválidos!!!';

}

}

Agradeço a todos.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

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...