Jump to content

If Conditions


daddyb1

Recommended Posts

I am trying to get  6 usernames and passwords from a local database via a file I created called database_log.inc.

note 2 columns and 6 rows

How can get each password & username with the current code?

 

here is the code for the log on:

 

<?php

function clean($data)

{

    $data = trim($data);

    $data = stripslashes($data);

    $data = htmlspecialchars($data);

    return $data;

}

 

$user = clean($_POST['username']);

$pass = clean($_POST['password']);

include 'database_log.inc';                              //info from the database separate file

if ($user == "shane" && $pass == "shane")  //password and user name not in the database

 

{

  session_start();

  $_SESSION['username'] = $user;

  $_SESSION['password'] = $pass;

  $_SESSION['ON']="TRUE";

  $lifetime=600;

  setcookie(session_name(),session_id(),time()+$lifetime);

  header( 'Location: inner.php' ) ;

  exit();

}

 

 

else

{

header( 'Location: index.php' );

session_destroy();

exit();

}

 

?>

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/252434-if-conditions/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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