Jump to content

My sql login selection


samowns

Recommended Posts

here is loginact.php

 

i just want if user login see the profile restriction means if admin login they can change ..i think i need to put one field 'type' admin or user..plz somone figure out..am new to sql this code is running

 

 

<!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">
 <link href="css/style.css" rel="stylesheet">
<head>
<style>
.red
{ color:#F00;
font-size:15px;
}


</style>

<?php include "header.php";?>
<?php

include ("db.php");
$error="";
?>


<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head><?php session_start();


?>

<?php
if(isset($_POST['sb']))
{

$a=$_POST ['eml'];
$b=$_POST['pass'];

$c="select * from users where eml='$a' && pass='$b'";
$s=mysql_query ($c);
$row=mysql_num_rows($s);


if($row==1    )
{
    $_SESSION['eml']=$a;

    header("location:fetch.php?msg=Scuessfull login");
    
}
else{

    $error= "Invalid Email or  Password *";
}

    



}



?>
</head>

<body><?php
if(isset($_GET['logout']))
{
       session_unregister('eml');
}




?>
<h3>Admin Login </h3>

<div class="usr">

<form action="loginact.php" method="post" required="required">
<div class="col-lg-6"><div class="input-group">
Email id<input type="text" class="form-control" name="eml"  required="required"/>
<br />
<div  class="red"><?php if($error!="") { echo $error; } ?></div>
Password<input type="password" class="form-control" name="pass" required="required"/><br />

<input style="width:100px;" class="btn-success k"  type="submit" name="sb" value="Login"/>
</form>
</div>

</body>

</html>
Link to comment
Share on other sites

Is so many things wrong with this code is not worth fixing.

 

I'll list some items wrong or bad with it.

 

can't use header() after there is any output on the page

 

start your session top of the script

 

mysql_* functions are deprecated use mysqli and mysqli_real_escape_string or pdo with prepared statements

 

use password_hash and password_verify

 

upon verifying the user and their hashed password, set the appropriate users id or name plus users rights in a session, from then on can use and check from the session values

 

You can do a users rights in the database 1-9 and the highest being admin with lesser permissions as go lower

I have a simple example of user rights in this post

 

keep all the coding logic up top and display html down below

 

could be using html5

 

You are better off looking on the net and find a tutorial using pdo, password_hash and sessions

Edited by QuickOldCar
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

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

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.