Jump to content

Making a username and password without a database


rondog

Recommended Posts

I have a flash movie that prompts the user with a username and password when the movie loads and on submit it sends the variables from flash to my login.php file. If they match then goto the next frame if not echo denied..

<?php
session_start();
$username = $_POST['username'];
$password = $_POST['password'];

if($username == "1" && $password == "2") {
echo "&msgText=Entrance Granted.";
$_SESSION['approved'] = 'yes';
} else {
echo "&msgText=Invalid Login!";  
}    
?>

 

I have the username and password set to just 1 and 2 for now, but is their a way to make this more secure without using a database? I dont like how the username and password is visible.

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.