It sounds frustrating to deal with login issues, especially when you're new to PHP/MySQL. Here are a few things you might want to check:
Database Credentials: Ensure that your database username and password in the script match those in your MySQL server.
User Table: Check if the user you’re trying to log in with actually exists in the database.
Password Hashing: If the script uses password hashing, make sure the password you’re entering matches the hashed version stored in the database.
Error Logs: Look at any error logs available; they might give you more insight into what’s going wrong.
Database Credentials: Ensure that your database username and password in the script match those in your MySQL server.
User Table: Check if the user you’re trying to log in with actually exists in the database.
Password Hashing: If the script uses password hashing, make sure the password you’re entering matches the hashed version stored in the database.
Error Logs: Look at any error logs available; they might give you more insight into what’s going wrong.
Kommentar