Posts by Diego Bucardi • 33 points
4 posts
-
-1
votes1
answer31
viewsA: Update a table without page refresh
First of all it would be interesting to separate the excerpt of the code responsible for rendering the table row, we can do this by creating a function in php: function renderTableLine($registro) {…
-
-1
votes1
answer42
viewsA: I’m trying to get the box-shadow off my accordion-item, but I can’t
The gray line below the buttons is in the div which has the class "accordion-item", you can hide it by overriding this css rule: .accordion-item { border: 0 !important; } Remembering that this css…
-
-1
votes1
answer34
viewsA: Life cycle and React variables (state and useEffect)
The state variables are outdated because of the operation of the closure, I suggest you read some article about it so that you better understand the functioning. I didn’t fully understand your…
-
0
votes2
answers64
viewsA: Difficulty adding data to db using PHP and MYSQL
I believe it is an error in creating the SQL command, try to use: $sql = "INSERT INTO user (username, password, email) VALUES('".$username."', '."$password."', '".$email."')"; Use these commands to…