Gruzin Posted July 25, 2006 Share Posted July 25, 2006 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"; //passwordif($user==$id)if($pass==$paroli) echo "<a href='".$linkR."'>".$linkShowR; else echo "<a href='".$linkW."'>".$linkShowW; ?>thanks Quote Link to comment https://forums.phpfreaks.com/topic/15590-simple-php-password/ Share on other sites More sharing options...
CheesierAngel Posted July 25, 2006 Share Posted July 25, 2006 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"; //passwordif($user==$id && $pass==$paroli) header("Location: $linkR");else header("Location: $linkW");?>[/code] Quote Link to comment https://forums.phpfreaks.com/topic/15590-simple-php-password/#findComment-63414 Share on other sites More sharing options...
Gruzin Posted July 25, 2006 Author Share Posted July 25, 2006 ok, I'll try:) thanks Quote Link to comment https://forums.phpfreaks.com/topic/15590-simple-php-password/#findComment-63416 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.