Posts by Rodrigo BRF • 73 points
11 posts
-
0
votes1
answer25
viewsQ: Access SQL syntax error to find and delete duplicates leaving only one
Good afternoon, everyone. I’m trying to make an example SQL code that I found on the Internet to find duplicates of my Access table and delete only keeping the first record. However, when changing…
ms-accessasked Rodrigo BRF 73 -
0
votes0
answers650
viewsQ: Working in the same bootstrap modal after submitting a form
I am working on a project with Bootstrap Modals. I have already done the modals to create content, delete, etc. But, I need to have one for editing... And I’m having a little trouble. MODAL UPGRADE:…
-
2
votes0
answers160
viewsQ: Search the page with Javascript with IE
Good morning! We are creating a super simple HTML page even for a small document that some users will access. In this document we have a form (input text) of search that will have to return through…
-
1
votes1
answer608
viewsQ: Deploying logoff on my login system with UNSET SESSION
I have the following login file.php: <?php require_once('conexao.php'); // FETCH DATA FROM FORM USING METHOD POST // IF BUTTON NAME "LOGIN" IS SET if (isset($_POST['login'])) { // FETCH DATA FROM…
-
1
votes1
answer43
viewsQ: Data return problems when creating a php search
I’m creating a search.php for my sisteminha, so far everything is OK, but no while that I created to show the questions that match the searched title and their respective links, nothing appears on…
-
0
votes1
answer98
viewsQ: Return SQL data mysqli_fetch_assoc organized in a table
I have the following SQL <?php require_once("php/conexao.php"); $strSQL = "SELECT id, titulo FROM questoes ORDER by id DESC"; if($result = mysqli_query($conexao, $strSQL)) { while($row =…
-
2
votes2
answers192
viewsQ: Login PHP and Mysql generating mysqli_fetch_array() error
Good morning! I have the following code to log in to the system: <?php require_once('conexao.php'); // FETCH DATA FROM FORM USING METHOD POST // IF BUTTON NAME "LOGIN" IS SET if…
-
0
votes2
answers2890
viewsQ: Return database data to PHP page not returning data
Good morning, you guys. I have a page (index.php) that needs to return the database data to it. I have a . php (connection.php) that connects to the database, see: $_SG['servidor'] = 'localhost'; //…
-
0
votes1
answer41
viewsQ: Switching Web Pages Every So Long
Good morning! We have in the company two panels in two separate ASP pages. We need panel 1 and panel 2 to have some way of calling each other every so long. There would be some way maybe with…
-
0
votes1
answer408
viewsQ: ASP with SQL bringing different result of the query
Good afternoon! We are finishing a panel that will bring the results of an SQL in an ASP page. We already have two finished panels that are pulling the results perfectly. Only one of the panels does…
-
0
votes1
answer5292
viewsQ: Refresh in div without loading other content
Good morning, everyone! I have a page in ASP that has basically 2 Divs. A div where there is a panel that connects to a database and takes 3 information from there (a kind of Dashboard) and a div…