Posts by dayvs0n • 48 points
2 posts
-
3
votes1
answer2360
viewsA: Update several fields and values in the same table
Your problem is in the array $dados and its iteration by foreach. The variables$qtd, $nom and $id are arrays. Just when you do: $dados = array('nome'=>$nom, 'qtd'=>$qtd, 'id'=>$id); You are…
-
0
votes1
answer383
viewsQ: Add pointer to an Std:vector
Hi, need to add in a vector<TimedCommand> tCommands; access references for Timedcommand instances, example: TimedCommand command1("*.*.*.*.*.*",&sonCommand,"13"); (...)…