Hi how i would i get the value from the database to compare it with the value tha user have entered in the registration form for example: if(db_varoable = user_variable) { print \\"database value is equeal to user value\\" }
You will need to add a second \\'=\\':
if(db_varoable == user_variable) { print \\\\\\\\"database value is equeal to user value\\\\\\\\" }
A single \\'=\\' will change the first variable to the value of the second.