Posts by reigelado • 69 points
12 posts
-
0
votes0
answers31
viewsQ: What is PHP object injection?
I was taking a look at owasp’s articles on safety and would like to understand what is the PHP Object Injection my English is not very good so in my search I found that topic in Brazilian…
-
0
votes1
answer46
viewsQ: Organize mysql select by month groups
I’m trying to organize a return from my mysql bank in months , ie , so I have groups of months of donations that the site that work receives , I tried so: SELECT * , MONTH( `DataConfirmacao` ) FROM…
-
1
votes1
answer1636
viewsQ: Floating box with CSS and HTML
I would like to know how to create a floating box that darkens the screen behind and information appears in the center of the page , I searched in stackoverflow br and did not find something…
-
2
votes1
answer59
viewsQ: CSS: Keep Values Aligned
Good evening, I’m having a problem in CSS I would like to organize the releases of my users in one line. I’m not very familiar with css , I would also like to know what tips you have to unravel this…
-
0
votes1
answer757
viewsQ: PHP: user location map via geolocation IP
Good Night , I have in my company’s database with several IP addresses ( in history format ) and the current IP of the user accessing my site. I would like to know if you can with this data set up a…
-
0
votes2
answers980
viewsQ: Insert Image with CSS Without Line Break
I have the following problem , when I insert some photo with the background it keeps breaking line : I wanted them to line up : Ex: [Imagem] - [Imagem] HTML: <span id="vote"><a href="#"…
-
0
votes1
answer60
viewsQ: Generate image using PHP for directory
Sorry if it got very strange the question , I have a system that when the user upload has no image it puts in the following img directory: /xxxx/estatico/comuns/sem_imagem/ My idea was to generate…
-
0
votes1
answer908
viewsQ: Change the color of Datepicker
I’m trying to modify the background color of my jquery datepicker , I searched the internet some solutions brought me this code: .ui-datepicker { color:white; background-color: red; background: red;…
-
0
votes1
answer213
viewsQ: Sum values in a Mysql Count
Good evening, I’m with a doubt I have a system that runs to seguiten query: SELECT IDUsuario ,COUNT('TotalDeUps') as Total, FROM uploads WHERE Time >= '2018-02-20 00:00:00' AND Time <…
-
0
votes1
answer26
viewsQ: Count Amount of Uploads in a Certain Period
I have the following query in my file: SELECT IDUsuario,IDArquivo,Time FROM uploads WHERE Time >= '2018-02-20 00:00:00' AND Time < '2018-03-21 00:00:00' And my result resembles that: In this…
-
1
votes1
answer43
viewsQ: WHERE do SQL returns unwanted values
SELECT x, y, z, f , g , h FROM torrents INNER JOIN w ON w = x WHERE y = '2' OR y = '7' AND f = '1' AND h < 4294967296 I named the f = '1' in the where so that he returns to me only the values…
-
1
votes1
answer132
viewsQ: Slide loading at time of execution
I have a site with many images , this way the first time the user opens the site it takes a long time to load because first loads the images that are at the top of the site to load the rest of the…