Posts by Ewerson S. • 1 point
2 posts
-
0
votes0
answers410
viewsQ: Allow only dash number (hyphen), bar and dot in inpult
I am trying to make a CPF & CNPJ field with mask, but I want to allow in the field only number, dash (hyphen), bar & dot; and want to put to Mask works like this when I had 14 digit (cpf) it…
-
0
votes3
answers810
viewsA: php Session - destroy all Sessions and keep only one active
You giving session_destroy(); you will destroy all the Session, for you to destroy only the specifics use unset(); therefore: unset($_SESSION['session1'], $_SESSION['session2']); RESULT: you will…