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
https://forums.phpfreaks.com/topic/15590-simple-php-password/
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
https://forums.phpfreaks.com/topic/15590-simple-php-password/#findComment-63414
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.