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 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] 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 Link to comment https://forums.phpfreaks.com/topic/15590-simple-php-password/#findComment-63416 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.