• Welcome to ForumKorner!
    Join today and become a part of the community.

Anyone know how to fix this?

Sleep

Discord : ClumsyLulz
Reputation
0
So I keep getting this error when I login to my website any idea how to fix
I know it's a database error but I have no clue how to fix it please help
Unknown column 'pwd' in 'field list'
 

Morphene

Onyx user!
Reputation
0
Are you coding your own PHP and MySQL? If you are, you might be having an issue with the quotes. Try using singulars if you are in a double.

Example:
Code:
echo 'This isn't the right way'

Bad

-----------------------------------

echo "This isn't the right way"

Good
 
Top