Posts by Banks • 81 points
8 posts
-
1
votes1
answer85
viewsA: CSS does not apply 100%
You must also say, to body and html that they need 100% of height html, body { height: 100%; }
-
2
votes1
answer68
viewsQ: Loop of multiple IDS in jQuery
I have that code HTML and PHP <?php foreach (array_chunk($unfollow, 3) as $row): ?> <div class="row mb-5"> <?php foreach ($row as $value): ?> <?php //var_dump($value) ?>…
-
0
votes2
answers117
viewsQ: Loop with columns and Rows
I’ve been trying to do it like this: <?php foreach ($unfollow as $row): ?> <div class="row"> <div class="col-md-4"> <?php var_dump($row)?> </div> </div> <?php…
-
0
votes1
answer47
viewsQ: php loop of images with bootstrap
I have this code that brings some Instagram images, I want to stay 3 photos by row (line); Then if there are more than 3, create another Row. my code: <div class="row"> <?php foreach…
-
0
votes2
answers192
viewsA: How to update the database from a form using PDO?
Buddy Check the placeholders? $this->query->bindParam(':titulo', 'algo'); $this->query->bindParam(':descricao', 'algo'); $this->query->bindParam(':codigo', 'algo');…
-
1
votes0
answers114
viewsQ: Ignore some fields with regex
In PHP I’m using preg_match_all to get some data from this form: <form id="login_form" action="/login/device-based/regular/login/?login_attempt=1&lwv=100" method="post" onsubmit="">…
-
2
votes1
answer531
viewsQ: Grab only some attributes of HTML tags
I have several inputs, from a curl, but I just need the name and of value of these inputs: <input type="hidden" autocomplete="off" name="timezone" value="180" id="u_0_9"> I have this code:…
-
1
votes1
answer781
viewsQ: Flex display does not work with CSS property
I am unable to use the following Ivs with the properties: .grid { display: block; } @media (min-width: 992px) { .grid { display: flex; flex-wrap: wrap; } } .column.left { flex: 4; background-color:…