Posts by André Kiffer • 21 points
2 posts
-
1
votes2
answers109
viewsA: What’s wrong with my array in php?
Some problems I see in your code: 1 - If it is a json that you are returning in the reply, the Header must be compatible. Ex: Instead of header('Content-Type: text/html; charset=utf-8'); use…
-
1
votes1
answer599
viewsA: Value tuple using mysql Procedure
I don’t know if you’ll be able to make the query, but try using WHERE codigo IN(1, 2, 3) and valor IN(2, 20, 30) But the return would be any code and value you’re passing. I believe you will have to…