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'
 
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
 
Back
Top