Posts by Mauriney • 7 points
2 posts
-
-2
votes2
answers94
viewsA: PHP site does not read special characters
When creating the database did you set to UTF8 or left the default? Do a test and perform this change in the database (localhost and backup pfv kk) ALTER DATABASE nameBD CHARACTER SET utf8 COLLATE…
-
1
votes2
answers418
viewsA: Spam in the contact form
Try changing the isset by strlen(), because isset only checks if it is already exists strlen( ) > 0 checks if the String is empty. But, the same idea is to use the Recaptcha.…