Posts by Leonardo Sacon • 45 points
6 posts
-
-2
votes2
answers13878
viewsA: PHP error: "Fatal error: Call to a Member Function prepare()"
Try using a RETURN after instantiating the connection, like this: $db = new PDO("mysql:dbname=database;host=localhost;charset=utf8;","root",""); return $db; if the connection is in a class and you…
-
0
votes1
answer43
viewsA: How to View Query with Inner Join in mysql php
For better understanding, if you perform the following instruction: select distinct(id_agente) from proprietario you will be preventing some owner from repeating himself in the query, by the agent…
-
0
votes1
answer1114
viewsA: Plugin Bootstrap Table - English translation
Add translation js to your code after bootstrap-table js start. <script type="text/javascript"…
-
0
votes1
answer75
viewsA: I made a Carousel of several images next to each other that is not responsive on smaller screens
Pass with the "col-lg-3" the "col-Xs-X". Ex.: class="col-xs-12 col-lg-3" Also check if you’re adding the meta tag to the header: <meta name="viewport" content="width=device-width,…
-
0
votes2
answers2291
viewsA: How to Decrease Card Size in Boostrap
<div class="row"> <div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">Sua div class card aqui</div> <div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">Sua div class card…
-
1
votes1
answer937
viewsA: How do I place a column next to another bootstrap
If the menu is fixed try to perform this way: (attention to col-Sm-X, x should close 12 when adding the elements) <div class="row"> <div class="col-sm-3">Lista 1 aqui</div> <div…
bootstrap-3answered Leonardo Sacon 45