How do I do the echo "Success" and "Failed to appear below the form?"
<?php
$conexao = mysqli_connect("localhost","root","","projeto");
if (isset($_POST['submit'])) {
$nome = $_POST['nome'];
$senha = md5($_POST['senha']);
$inserir = mysqli_query($conexao,"INSERT INTO teste(nome,senha) VALUES('$nome','$senha')");
if ($inserir) {
echo "Sucesso";
}else{
echo "Falhou";
}
}
?>
<h1 id="nome">cadastro</h1>
<form id="form" action="index.php" method="post">
<input type="text" name="nome" placeholder="Digite seu nome:">
<input type="password" name="senha" placeholder="Crie uma nova senha:">
<input type="submit" name="submit" value="Enviar">
</form>