Posts by Djair Dutra • 1 point
3 posts
-
0
votes2
answers223
viewsA: Cookie and sharing between subdomains?
Depending on the application, it may be a problem to share cookies between different subdomains, including because you have indicated that cookies even contain encrypted data. I would create a comic…
-
-2
votes1
answer29
viewsA: Send JS variable value to PHP
Although it’s not a good technique, just write inside the JS with PHP. Don’t forget that PHP requires ";" at the end of each line, unlike JS. function funcaoModal(element) { var dataVar =…
-
-2
votes5
answers192
viewsA: Code executes a line that should be conditional
To facilitate understanding, each time you read the word "Else", translate to "else". In a simple if, as in this case, the condition != 0 has already been tested first, so it is understood that the…