Nome não aparece na tela após o bem vindo e nem o formulário
Boa tarde pessoal! É o seguinte, meu código era para fazer aparecer "Bem-vindo (nome que o usuário digitou)." mas só aparece "Bem-vindo.". E abaixo do "Você deseja:" era para ter um formulário preenchido com as informações descritas nos echos abaixo do comando "while($linha=mysqli_fetch_array($resulta))". Mas não aparece nada... Alguém sabe me dizer qual é o erro com esse código?
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="file:///C:/xampp/htdocs/devquadion/css/estilo_registrese.css"
<meta charset="utf-8">
<title>Projeto - Painel</title>
</head>
<body>
<center>
<h1>PAINEL</h1>
<br><br>
<?php
session_start();
include(''conexao.php'');
$nome = filter_input(INPUT_POST, ''nome'');
echo "Bem-vindo".$nome.".";
echo "<br><br><br>";
echo "<h2>Você deseja:</h2>";
$comando="SELECT * FROM funcionarios WHERE nome=''$nome''";
$resulta=mysqli_query($conexao,$comando);
$linha=$resulta->num_rows;
while($linha=mysqli_fetch_array($resulta))
{
echo "<form action=''funcoes.php'' name=''funcoes'' method=''post''>";
echo "Nome:";
echo "<br><input type=''text'' value=$linha[1]";
echo "Email:";
echo "<br><input type=''text'' value=$linha[2]";
echo "Telefone:";
echo "<br><input type=''text'' value=$linha[3]";
echo "Celular:";
echo "<br><input type=''text'' value=$linha[4]";
echo "Cidade:";
echo "<br><input type=''text'' value=$linha[5]";
echo "Salario:";
echo "<br><input type=''text'' value=$linha[6]";
echo "Data de cadastro:";
echo "<br><input type=''text'' value=$linha[7]";
echo "Senha:";
echo "<br><input type=''password'' value=$linha[8]";
echo "<br><button type=''submit'' name=''deletar''>DELETAR</button>";
echo "<br><button type=''submit'' name=''alterar''>ALTERAR</button>";
}
?>
</center>
</body>
</html>
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="file:///C:/xampp/htdocs/devquadion/css/estilo_registrese.css"
<meta charset="utf-8">
<title>Projeto - Painel</title>
</head>
<body>
<center>
<h1>PAINEL</h1>
<br><br>
<?php
session_start();
include(''conexao.php'');
$nome = filter_input(INPUT_POST, ''nome'');
echo "Bem-vindo".$nome.".";
echo "<br><br><br>";
echo "<h2>Você deseja:</h2>";
$comando="SELECT * FROM funcionarios WHERE nome=''$nome''";
$resulta=mysqli_query($conexao,$comando);
$linha=$resulta->num_rows;
while($linha=mysqli_fetch_array($resulta))
{
echo "<form action=''funcoes.php'' name=''funcoes'' method=''post''>";
echo "Nome:";
echo "<br><input type=''text'' value=$linha[1]";
echo "Email:";
echo "<br><input type=''text'' value=$linha[2]";
echo "Telefone:";
echo "<br><input type=''text'' value=$linha[3]";
echo "Celular:";
echo "<br><input type=''text'' value=$linha[4]";
echo "Cidade:";
echo "<br><input type=''text'' value=$linha[5]";
echo "Salario:";
echo "<br><input type=''text'' value=$linha[6]";
echo "Data de cadastro:";
echo "<br><input type=''text'' value=$linha[7]";
echo "Senha:";
echo "<br><input type=''password'' value=$linha[8]";
echo "<br><button type=''submit'' name=''deletar''>DELETAR</button>";
echo "<br><button type=''submit'' name=''alterar''>ALTERAR</button>";
}
?>
</center>
</body>
</html>
Rafael Lemes
Curtidas 0