Posts by Josileno Nascimento • 36 points
4 posts
-
0
votes3
answers479
viewsA: Question how to link between css and html
To add a style to the html file you use: <link rel="stylesheet" href="caminho-do-arquivo.css"> Inside the tag head.
-
0
votes2
answers52
viewsA: Problems with HTML function
In the html file inform to the function the name of the FORM: <form name= "Ficha1" action="cadastroprestador.php" onsubmit="return Validacao(Ficha1)" method="post"> In the file…
-
0
votes1
answer442
viewsA: Show and Hide Table Lines
Let’s see if I can help: You forgot the 'r' in the call of the hidden Javascript function: echo'<td><button id="btnExibeOculta" class="btn" onclick="ocultarExibi();">' Well, if you want…
-
2
votes2
answers905
viewsA: Show success message without leaving the page
<?php session_start(); // Verifica se o "dados" está configurado, se sim significa q o form foi submetido(enviado) if ( isset($_POST['dados']) ) { $query = "INSERT INTO…