Posts by Thiago Vinícius • 39 points
9 posts
-
-1
votes1
answer1188
viewsQ: Formula to return the date only with working days
Is there any formula I can use for the cell to return the date corresponding to the term? If I enter the date 03/01/2020 in the cell, I want another cell next to return the date with the calculation…
-
-1
votes1
answer27
viewsQ: Take the rest of the decimal places and perform a conversion
I am very layman in javascript, but I think you can do this in this language. I tried it in a very trivial way, but I did not succeed. Basically I have a system that converts the amount into kg for…
-
2
votes1
answer54
viewsQ: Change box text when selecting option
I have the following code, but I’m having doubts about how I make the text change according to the selection. I wanted that when selected, for example, the user Marcyen as goalkeeper would appear a…
-
0
votes0
answers39
viewsQ: What’s the difference between these two selectors?
I wanted to know the difference between those two ways: primeiro { width: 50px; float: left; background-color: blue; height: 50px; padding: 7px; } .primeiro { width: 50px; float: left;…
-
-1
votes1
answer511
viewsQ: Refresh page with button, but without blinking
I wanted to click the button atualizar the page updated automatically but without flashing, without refresh .transferencias { width: 59%; float: left; margin-left: 30px; margin-top: 25px; }…
-
0
votes2
answers83
viewsQ: Form to change value in the database
I have it in the database I wanted a form that by clicking the button Enviar change the value of pontos user selected. But for now I only have this, I do not know how to make the code in PHP.…
-
1
votes1
answer31
viewsQ: Image change as the form field is chosen
I want when I select, for example, the option Ches replaces where it is NOME automatically in HTML. .goleiro-1 { height: 70px; width: 70px; background-color: #fff; border-radius: 50%; box-shadow: 0…
-
0
votes2
answers500
viewsQ: Display higher value and name
I have the following code: <?php $consulta = mysql_fetch_assoc(mysql_query('SELECT MAX(pontos) FROM usuarios')); echo intval($consulta['MAX(pontos)']); ?> However, it only displays the highest…
-
0
votes2
answers1076
viewsQ: How to get value from a table column
I wanted to take the value of logged in user points and put on my page. This is the table "users" For example: "You have x points" Below page login.php <?php $login = $_POST['login']; $entrar =…