Posts by Fabio Guerra • 1 point
2 posts
-
-4
votes1
answer1017
viewsA: how to resolve accent errors when sending an Android message to a php API
Try to put the \n followed by the following line without spaces. Example: "Olá!\nTudo bem?
-
-1
votes3
answers313
viewsA: Login problems using the crypt() function in PHP
Replace the line: if($userRow['PASSWORD']==$upass) by the line: if(crypt($upass,$userRow['PASSWORD']) == $userRow['PASSWORD'])