Posts by Jonathan Brambati • 1 point
3 posts
-
0
votes2
answers255
viewsA: How to center all elements of an HTML page vertically?
Put this css in the body display: flex; align-items: center; and Justify-content: center
-
0
votes2
answers111
viewsA: Php and Pdo - Data insertion are being duplicated
I use it like this and work normally, see if it helps you. $query = "INSERT INTO tbale (cp1, cp2) VALUES ('val1', 'val2')"; $rs = $conn->prepare($query); $rs->execute();…
-
-1
votes1
answer487
viewsA: Send a JSON array with single quotes
Hello, all right? See if it helps you. $array = []; for($i = 0; $i < 10; $i++){ $array[] = [ 'produto' => 'nome item', 'quantidade' => 12, 'preco' => 12.12, 'imagem' =>…