Posts by Emerson Freitas • 33 points
2 posts
-
0
votes2
answers50
viewsQ: Problem in including data through a form using PHP and Mysql
<?php define('HOST', 'localhost'); define('USUARIO', 'root'); define('SENHA', ''); define('DB', 'login'); $conexao = mysqli_connect(HOST, USUARIO, SENHA, DB) or die ('Nao foi possivel conectar');…
-
2
votes1
answer492
viewsQ: show/hide form using javascript buttons
I need to show a form using a button and hide it when the user presses another button, because the other button should show a table fed with database data. I used the following answer as a basis and…