Posts by Brenno Segolim • 66 points
3 posts
-
1
votes1
answer52
viewsA: Making a rank system
The simplest way to solve it would be by using order by in your selection, like this: SELECT * FROM Usuario ORDER BY Level DESC
-
1
votes2
answers244
viewsA: Is it possible to hide or change your "arrow" style from within input or datalists?
I think this way will help you. input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } <input type="number" name="numero" min="0"…
-
2
votes1
answer171
viewsQ: Regex for split comparison operators
I’m having trouble putting together a regular expression that meets the following condition: String formula = " 100 != (50 + 20 + 30) "; String arr = formula.split(" somente os caracteres: '=',…