Posts by Dalvo Rienda • 11 points
2 posts
-
1
votes2
answers2037
viewsA: Pass an array of objects via AJAX via POST and read the properties of objects in PHP
You don’t need to make this conversion to json to send by post, it would basically pass the object with the data $.post('../actions/rota_inserir.php', {horario: '14:00'}, function (retorno) { //…
-
0
votes2
answers729
viewsA: POO tables in Lua!
The problem ai is that you try to concatenate a string with a table, and that defining the metamethod that is going to be called is the first operator. Fortunately for the case of strings, it has…