Luiz Paulo Nievola Posted May 23, 2018 at 01:45 PM Report #610653 Posted May 23, 2018 at 01:45 PM (edited) <?php print "Resultados da pesquisa com a palavra <strong>$filtro</strong>.<br><br>"; print "<i>$registros registros encontrados.</i>"; print "<br><br>"; while($exibirRegistros = mysqli_fetch_array($consulta)){ $codigo = $exibirRegistros[0]; $nome = $exibirRegistros[1]; $email = $exibirRegistros[8]; $profissao = $exibirRegistros[9]; print "<article>"; print "Codigo do cliente: $codigo<br>"; print "Nome: $nome<br>"; print "Email: $email<br>"; print "Profisão: $profissao<br><br>"; print "</article>"; } mysqli_close($conexao); ?> Bom dia a todos, estou fazendo um sistema de consulta no mariadb, porém o estilo do Article não aparece no navegador, em nenhum deles, isso não deveria ocorrer mesmo estando dentro do php?! Edited May 23, 2018 at 01:58 PM by Luiz Paulo Nievola
M6 Posted May 23, 2018 at 05:39 PM Report #610658 Posted May 23, 2018 at 05:39 PM Isso não tem nada a ver com o PHP, tem a ver com o CSS que estás a aplicar (ou a falta dele). 10 REM Generation 48K! 20 INPUT "URL:", A$ 30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50 40 PRINT "404 Not Found" 50 PRINT "./M6 @ Portugal a Programar."
Luiz Paulo Nievola Posted May 23, 2018 at 08:00 PM Author Report #610663 Posted May 23, 2018 at 08:00 PM Estou a usar css, vou conferir isso, grato.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now