Posts by Pedro Lima • 91 points
3 posts
-
4
votes2
answers1776
viewsQ: Create a table with sorting using Datatable
I am creating a table and need to give option to sort the table by the field you prefer. I tried to use the datatable the data is filled correctly in the table but when I click on a header to sort,…
-
0
votes3
answers756
viewsA: Send parameters via GET
$app->get('/:controller/:action(/:parameter)', function ($controller, $action, $parameter = null) use($app) { include_once "classes/{$controller}.php"; $classe = new…
-
5
votes3
answers756
viewsQ: Send parameters via GET
I’m making a requisition the following way. http://localhost/sistema-agenda-server/tarefas/listAll?id=1 I asked to see in the answer the generated sql and got the following answer: SELECT * FROM…