Posts by RFL • 6,205 points
308 posts
-
0
votes1
answer889
viewsQ: Catch field on table with Mysqli
I am trying to create in my code a comparison to check if the password entered is equal to registered. I used it as follows; function confirmaPedido ($conexao, $numeroPedido, $senha) { $querySenha =…
-
8
votes3
answers2955
viewsQ: Function that returns function in Javascript
I started studying Javascript a short time ago and came across a situation in a code (exercise) that I can’t understand. function hi(a,b) { return a*b; } function hello(a,b) { return hi(a,b+1); }…
-
1
votes1
answer349
viewsQ: Change table in mysql
I have the following situation. A table that displays the searched results in mysql, and within this table I have a column where the edit button is. How do I get this button to edit the content…
-
1
votes0
answers582
viewsQ: modal bootstrap
1st doubt: I can handle variables in php + Mysql inside the modal window? I’m trying to call a modal on my page index and it’s not working, I’ve looked for the solution and also could not find. At…
-
0
votes0
answers52
viewsQ: Trying to display Rand() after inserting in db
Hello, I’m trying to display a random number with Rand() after inserting it into the database. mysql insertion works normally, but when I try to display a message with the $request variable nothing…
-
4
votes1
answer4734
viewsQ: Pick variable on another page
After fetching the data in mysql with php and displaying it on the page, I would like to know how to get these same results from this page where it is displayed and display them on another page.…
-
1
votes1
answer58
viewsQ: Problem with Function
Hello, I’m trying a problem with my query code in mysql, https://gist.github.com/Alkun/d2239eee1514a0dfc16a If the user enters some value the search in the database is done normally, but if he…
-
2
votes3
answers780
viewsQ: Select data and display
I’m having trouble looking up Mysql in a simple way. I already have a file on includes connection to the bank that works normally. But I’m not showing them. The code I found on Google. 1 - I don’t…