I have form
with textarea
where dois valores por linha
. Example:
Matheus|123
Lucas|987
I need to send these values to a curl with postfield:
{"nome":Matheus,"senha":123}
My question is how do I work with textarea
and for
?
Script so far:
// informacoes
$nome = $_GET['nome'];
$senha = $_GET['senha'];
// inicia o curl
$ch = curl_init();
// url curl
curl_setopt($ch, CURLOPT_URL, "localhost/teste.php");
// diz que vai fazer uma requisicao
curl_setopt($ch, CURLOPT_POST, 1);
// informa as informacoes para serem dadas
curl_setopt($ch, CURLOPT_POSTFIELDS, '{"nome":".$nome.","senha":".$senha."}');
// executa o curl
$data = curl_execut($ch);
// verifica se o usuarario existe na db
if(strpos($data, 'Erro":false') !== false):
echo "existe";
else:
echo "nao existe";
endif;