Posts by Kaléu Caminha • 1 point
3 posts
-
0
votes3
answers869
viewsA: Questions to send data via POST
Just add the "name" attribute to your inputs with the same id value: <input type="text" class="form-control" id="nome_usuario" name="nome_usuario" ... > The id in this case, is used to link…
-
0
votes1
answer73
viewsA: I would like to know how to load data from one HTML into Other
Thomaz, Probably your first registration HTML saved the data in a database, right? When displaying the second, changing page, you should: Take the previously registered data from the database (with…
-
0
votes1
answer54
viewsA: Apigility Doubt in the Methods
Hello, the "Resource" class in Apigility, both Rest and RPC is created with the methods that will be called by the controller. You normally create methods within the class and use them in the class…