Posts by Fabricio Caceres • 119 points
4 posts
-
2
votes2
answers2251
viewsA: Chained list - remove function
I believe the error is in your while, because in case you are sending 8, but doing a table test realize that in the first interaction of while it does not enter and passes directly. Ex: q->Prox…
-
1
votes1
answer602
viewsA: How to send data from an Ionic Framework generated form to a PHP file and return a JSON?
You could be using $http from the angular itself to send this data, and in php returns json. https://docs.angularjs.org/api/ng/service/$http link to the $http documentation, there are some usage…
-
3
votes2
answers610
viewsA: Good practices Codeigniter
Really add a lot view in controller is not very good, so I ended up finding a library very simple that I use. To use the library create the file Template.php in application/views/Template.php and…
-
2
votes1
answer870
viewsA: Http method post, date parameter is passing always empty (Angularjs + Laravel 5.2)
Check that the parameter "data_frequencia" is actually being sent. As generally use Chrome, in Developer Tools -> Network la has its POST, ve se esta enviar algum valor. And a hint, use the value…