Posts by Luan Peil • 100 points
8 posts
-
0
votes0
answers39
viewsQ: Problem with internal scrollbar
In certain resolutions (smaller) the scroll bar in the div "contacts" works perfectly, but in others they are superimposed by the content on your left. With normal resolution is as follows: The…
-
1
votes1
answer55
viewsA: Variable repetition problem in PHP
Your code has some logic errors, and some ';' is missing (not if you just transcribed it wrong or if it’s in the code), and while at first generates infinite inputs, so I rewrote the code and it’s…
-
0
votes3
answers37
viewsA: Select entries between two dates
Do you have 2 date columns? One Start Date and another End Date? If yes it has to be so : select * from GP_Vw_Cons_Faltas WHERE `DataInicio` > '2019/03/14' and `DataFim` < '2019/03/14' AND…
-
3
votes1
answer267
viewsQ: Swap background-image with delay via jQuery
I’m trying to make a transition from background images via jQuery, with fade-in and fade-out effect and swapping this image, below follows my code. $(document).ready(function() {…
-
0
votes2
answers232
viewsA: Add a URL link to a CSS class via JS
Via Jquery is as follows: $(document).ready(function(){ $(".logo").attr({style: "content:url(https://example.com/Logo2.png)" }); }…
-
0
votes1
answer46
viewsA: How to query a column in the database and view filtered in 3 html columns?
I once had a similar problem, I would solve your problem as follows: If any item is repeated in the stock table: - Create a table listing all items - I would make 2 selects as follows <table>…
-
3
votes1
answer240
viewsQ: How to fix navbar with dropdown?
I want a navbar with dropdown menu and fixed at the top, but I can only leave fixed or with dropdown working, follow the code: body { margin: 0; } ul { list-style-type: none; margin: 0; padding: 0;…
-
1
votes2
answers199
viewsQ: How to insert grouped data from one table to another SQL
I have a 'point' table, with columns (id, Pis, date, time), which record the input and output of a product ('Pis'). I wanted to group in another table, where the data, Pis and date, are equal group…