Posts by Danilo Lutz • 42 points
3 posts
-
-1
votes1
answer92
viewsA: What is ( ) in php?
It is the XOR operator, as can be checked in more detail through this link: http://php.net/manual/en/language.operators.bitwise.php…
phpanswered Danilo Lutz 42 -
0
votes1
answer48
viewsA: Search without special SQL characters
Alan, I recommend you check the enconding being written to the database and the enconding the application is using. You have to see how the Flash treats that question. Hug.
sqlanswered Danilo Lutz 42 -
1
votes1
answer789
viewsA: CRUD in PHP and MYSQL - Delete
Hello, The line where you have the delete button is currently so: <a id="confirm" class="btn btn-primary" href="excluir_user.php?edit=<?php echo $row['id_user']; ?>">Sim</a> Would…