I'm creating a test page to see if I can use it, learn it, and then move it to a larger project.
My problem is this: I create the submission form in HTML, I do the search in BD with PHP, but I can not return the search result in PHP to PHP
HTML:
<html>
<head>
<meta charset="utf-8" />
<title>Teste</title>
</head>
<body>
<form action="teste.php ">
<input type="submit" name="Pesquisar"/>
</form>
</body>
</html>
PHP
<?php
$conexao = mysqli_connect('localhost','root','','login_sessao');
$consulta = mysqli_query($conexao, "SELECT usu_Senha FROM tb_usuario where usu_Email = 'emailQualquer'");
$consultaQ = mysqli_fetch_assoc($consulta);
echo "Sua senha é: " + $consulta['usu_Senha'];
?>
Sorry if you're formatted wrong, first time asking a question, but thank you right away.