How do I make a request, after clicking a button, used curl?
<html>
<head>
<title>loja</title>
<link rel="stylesheet" type="text/css" href="public/css/template.css" />
</head>
<body>
<div class="topo">
<div class="login">
<form method="POST" action="requisicaoCurl.php" name="login">
<input class="btn" type="text" placeholder="Usuário" name="usuario">
<input class="btn" type="password" placeholder="Senha" name="senha">
<button type="button" id="btn_entrar">Entrar</button>
</form>
</div>
</div>
</body>
</html>
I need only, after clicking enter make a requisition post and come back.