Posts by Bruno Pitteli Gonçalves • 297 points
6 posts
-
0
votes1
answer98
viewsA: Ideas for how to save user access
The first Token you should use only in the session. The second can be stored in the cookie, as you said. If the session of the former does not exist (or expirar_, Voce must create it, using the…
-
2
votes4
answers3793
viewsA: How can I put a negative number in PHP?
Any negative number with a positive turns negative Multiply by -1 $x *= -1;
phpanswered Bruno Pitteli Gonçalves 297 -
6
votes3
answers2952
viewsA: What is the concept of GTK? Is it recommended to use it?
Sorry to intrude after several months on the subject, but to say that PHP is poorly done, shows how much you were poorly answered. Compare languages like java and C# that were born after a long…
-
1
votes2
answers691
viewsA: Open calendar from a link
Looks like I found my own answer. Unfortunately I don’t know if I can answer it, but if I can’t, I ask the moderators to correct and instruct me so that I can understand better Well, on iOS we have…
-
0
votes2
answers691
viewsQ: Open calendar from a link
I’ve seen many different ways to do it, but none of it works I need to put a link on my site, where when click, open the schedule for the save person in her calendar just like tel: mailto:, I saw…
-
3
votes2
answers259
viewsA: Regular expression error in PHP
What do you want to do? It looks like you want to parse url. If so, use parse_url http://www.php.net/manual/en/function.parse-url.php If not, use the explode("/", $value) If to escape, use url…