Posts by Julio Leles White • 84 points
8 posts
-
0
votes1
answer15
viewsA: Display prayed results
Hello, good night. Do it this way that will work, abçs: SELECT c.id, c.name, function, area, Count(p.cpf_cli) Quantity AS FROM col c LEFT JOIN indication p ON p.id_collaborator = c.id WHERE…
-
0
votes2
answers551
viewsA: PHP Warning: mysqli_close() expects Parameter 1 to be mysqli, Boolean Given
Hello, i think this having problems with connection to the database, check the user, password and if the database and table were properly created and also avoid giving spaces, try to do so: $Conn =…
-
0
votes1
answer73
viewsA: PHP UPDATE runs but does not update
Hello, Locate the following line of your code: $sql = "UPDATE person SET Personal Name='$name', Personal; Replace it with something like this: $sql = "UPDATE person SET Personname='$name',…
phpanswered Julio Leles White 84 -
0
votes1
answer32
viewsA: Code problem sent by POST
Hello, Change the following line: $selectline= mysqli_query($connection, "SELECT Data FROM reuniao Where Codreuniao=$passcode"); For this purpose: $selecionalinha= mysqli_query($conexao, "SELECT…
phpanswered Julio Leles White 84 -
0
votes1
answer519
viewsA: What is the correct way to install LAMPP?
Hello, Linux is not like windows that handles records (regedit) :-). Things don’t get messy, at most there may be orphan libraries and this is solved... Read this url :…
-
0
votes2
answers99
viewsA: Remove . php extension from pages , but appears ERROR 404 - PAGE NOT FOUND
Faça desta forma: RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .*…
-
0
votes1
answer85
viewsA: How do I program an insert image button?
Hello, good morning, here comes the full code... Good luck! <html> <head> <title>Default</title> </head> <body> <div…
-
0
votes2
answers78
viewsA: Javascript error while trying to remove element
/** * * Use assim que funciona * */ var removerTds = document.querySelectorAll('.remover'); for(i = 0; i <…