Jump to content

simple php password


Gruzin

Recommended Posts

hi,
can somebody tell me, where can I find simple php password tutorial? Here is my effort, but I don't want the user to see the redirect...

<?php
$user = $_POST["user"];
$pass = $_POST["pass"];
$linkW = "http://www.3d.caucasus.net/admin";
$linkShowW = "Your Username or Password is incorrect";
$linkR = "http://www.3d.caucasus.net/admin/admin.php";
$linkShowR = "Welcome Online Aid";
$id = "gio"; //username
$paroli = "gio"; //password
if($user==$id)
if($pass==$paroli)
  echo "<a href='".$linkR."'>".$linkShowR;
else
  echo "<a href='".$linkW."'>".$linkShowW;
?>

thanks
Link to comment
Share on other sites

It would be more secure if you would use a database to store your passwords in.

$id = "gio";
$paroli = "gio";

isn't secure to store like this in your code.

You can use the function header() for this.

[code]
<?php
$user = $_POST["user"];
$pass = $_POST["pass"];
$linkW = "http://www.3d.caucasus.net/admin";
$linkShowW = "Your Username or Password is incorrect";
$linkR = "http://www.3d.caucasus.net/admin/admin.php";
$linkShowR = "Welcome Online Aid";
$id = "gio"; //username
$paroli = "gio"; //password
if($user==$id && $pass==$paroli)
  header("Location: $linkR");
else
header("Location: $linkW");
?>
[/code]
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.