Posts by Diego Magalhães • 45 points
9 posts
-
0
votes1
answer32
viewsA: UPDATE registration 0 in column even passing the value
I found the wrong. Wrong $select = $conecta->prepare("SELECT unidade FROM unidades_prevent WHERE ativo = 1 ORDER BY unidade ASC"); Correct $select = $conecta->prepare("SELECT * FROM…
-
0
votes1
answer32
viewsQ: UPDATE registration 0 in column even passing the value
I’m trying to edit the data in my database using a form. This same form pulls from a table the data to be edited, in one part of the form there is a select to Voce select the desired field coming…
-
0
votes2
answers89
viewsQ: Field search loses value by clicking on another page
I have a table referring to accesses of a certain system. In it I have a pagination with all the accesses of the system, when I search a certain access in the search field, the pagination applies to…
-
0
votes2
answers158
viewsQ: Field Validation in html and php
I would like a help to validate a field in the form to check if there is already a same email that the user type in the database. When the user clicks on the "register" button he will send directly…
-
0
votes0
answers36
viewsQ: Error when registering data in the database
I’m having a hard time getting some data into the database. When I click to register the message appears at the end of the code "error when registering". I’ve reviewed the code and I’ve reviewed the…
-
0
votes2
answers39
viewsQ: Entering register in data group - error
Good afternoon, I have an error when registering some data in my database. Follow a part of the code and the error that appears. include_once("settings.php"); $con = mysqli_connect(HOST, USER,…
-
3
votes2
answers1391
viewsQ: confirmation of registration via e-mail
I’m setting up a registration system and only need the confirmation part in the email to finish and I’m not able to do this part. I’ve researched tutorials on youtube and tried to apply them to my…
-
0
votes2
answers322
viewsQ: Email validation php error
I am validating the email field of my form and in order to validate the e-mail structure I need help. When it does, I don’t want it to send the information to the database, I want it to give false…
-
0
votes1
answer664
viewsQ: Show age between 20 and 30 in an array - Avascript
I would like to create a function as simple as possible that receives an Array of Person objects (example format: {name: "Alex",age: 24} ) that a new one returns array only with objects Person who…