Posts by Kelwen Souza • 76 points
6 posts
-
0
votes1
answer692
viewsA: Multi Language Site / Multi Language (Automatic Country Detection without Permission)
Your question has already been asked here at Stackoverflow and several of them already answer you how to do what you want, or rather none of them really tell you how to do it, just give you the…
-
0
votes2
answers46
viewsA: I cannot store the data in my variable database others2
Simple error when saving only, error is in query, you’re saving $1 other where it should be $others2 from what I understand. In the second part, when you check the $others2, if ($outros2 == ""){ ...…
-
1
votes2
answers410
viewsA: Loop Loop in Angularjs Cat Types
ng-repeat="type in types"; you should use: ng-repeat="type in types track by type.id"; or even: ng-repeat="type in types track by $index"; But since you use repeat inside repeat; do the tests, I…
angularjsanswered Kelwen Souza 76 -
0
votes2
answers381
viewsA: Doubt in the logic of registration with codeigniter!
Do you want the new registered user to receive the start date (but not the end date), and the end date of the last user entered in the table, receive the equivalent date that would be the start date…
-
0
votes1
answer601
viewsA: Ng-repeat and Angularjs Beginner Error
Let’s go in pieces. ng-repeat="row in board track by $index" Every item within the array board, a new <div class="row"> and a new <div class="gol-cell"..... </div> that is, everything…
-
2
votes2
answers1049
viewsA: Smart session with Codeigniter
I believe that Codeigniter does not have this, but this is very simple. Any request made in the application where any page contains session_start() at the beginning, the session will renew itself…