4 Users appreciate this thread.
Sample Login Script
angelrulez7 (2014-05-16 01:28:15)You should make it so that if the inserted username exists, it only returns "Incorrect password!"
a
TwilightWinter (2014-07-19 18:56:38)All of the users that comment here are experienced, so can someone make a thread about, "How to set up PHP environment". The installation of PHP and Apache Server and how to get it working.
2014-07-20 01:57:42
✋
1999 (2016-12-30 06:26:48)Understand that this is old but the passwords should be hashed and salted. And have email/username as login
squirtle2016 (2017-06-03 17:55:28)This is gay and so are you. I have your address by the way.
Stop, or you die.
TaigaFanboy (2017-08-03 11:53:56)Do not use this, passwords are hashed without a salt, which makes it easy for someone who managed to get into your system to use rainbow tables to figure out user passwords.
Log in to submit a comment
Back to forum: Web Programming (HTML, JS, CSS, PHP, MySQL)
New registered users today: 7
Newest registered user: ElegantVulpes
Hello, this script uses the database information in my other latest script. So, here is the code...
<?php session_start(); $logged = $_SESSION['username']; if(!empty($logged)) { header('Location: index.php'
2014-05-17 03:59:38