Posts by Vaz • 96 points
7 posts
-
1
votes2
answers235
viewsA: How to do a search in MYSQL considering plural and singular
The ideal in this case is to use the FULLTEXT search method instead of LIKE. Vala point out that this will not fetch the broken words, IE, he continues to search for words but what will define…
-
1
votes1
answer97
viewsA: Div1 disappear and div2 appear when clicking the button
Your button is of the type Submit. Whenever you click it will refresh the page and load everything the way you wrote. To consult the bank without loading the page you can use AJAX.
-
0
votes1
answer172
viewsA: List Mysql data in TABLES format within Bootstrap Tabs
Your select has no Where? As much as you are only displaying dairy products, your select has returned all fields in the table. While having few records ok, but when this table grows the system will…
-
1
votes1
answer31
viewsA: Variable with different values for each while return
I don’t quite understand what you want, but if you are just going to sort your list from the lowest value of the $buy variable to the highest one just give an ORDER BY ascName at the end of your SQL…
-
0
votes2
answers57
viewsA: How do I carry in the Location header only the user name
Goes through the $_SESSION global variable. It is responsible for storing session information. $resultado = mysqli_query($banco, $sql); $registro = mysqli_fetch_assoc($resultado);…
-
0
votes2
answers187
views -
2
votes4
answers1049
viewsA: Changing HTML does not reflect on page - Asp . NET Core 3.0
The same thing happens to me. My Visual Studio 2019 has these options enabled and nothing. One solution I found was: With the view you want to edit open. File > View in Browser or by shortcut…