Posts by Rafael Bozzetti • 116 points
5 posts
-
-3
votes1
answer58
viewsA: Problem with catching javascript page size
document.documentElement.clientHeight
-
0
votes1
answer33
viewsA: MYSQL - Where with relationship does not resume result
You built an expression that wishes an attribute (keyValue) has two values, which will not be possible. keyValue = 'dormitorios' AND keyValue = 'areaTerrene'…
-
-2
votes2
answers127
viewsA: PHP several Insert along with an update
If I understand your question, you must ask INSERT according to the number of plots, then you must iterate parcelas and make the INSERT. I advise you to use the pdo as object of the seat, mysqli is…
-
2
votes3
answers680
viewsA: Traversing array of objects
You can extract all values with array_map $valores[] = array_map(function($obj) { return array($obj->data['id'], $obj->data['name']); }, $unidades);…
-
9
votes3
answers502
viewsA: Add an hour to the current time
You can use the DateTime and add to 1 hour with modify. $date = new DateTime(); $date->modify('+1 hour');