Jump to content
Fórum Script Brasil
  • 0

[DUVIDA] Resultado PHP MySQL


MHostez

Question

if ($usu == true && $senha == true){
$query = mysql_query("SELECT * FROM cadastro WHERE email=$user");
while($sql = mysql_fetch_array($query)){
$nivel = $sql["nivel"];
}
echo "<status>true</status>";
echo "<nivel>".$nivel."</nivel>";
}else{
echo "<status>false</status>";
}

o que esta errado neste codigo... ele funciona tudo perfeita mente... so que não funciona a variavel $nivel.... ela não pega a informação do usuario.. o que eu faço?? o resto funciona tudo perfeitamente

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Se a query é feita sem problemas e a variável $nivel não recebe valor, talvez a atribuição

$nivel = $sql["nivel"];
esteja incorreta. Verifique se 'nivel' é o nome da coluna que tu quer pegar. Ou ainda, ao invés de pegar todas as colunas do resultado, pegue apenas a que você quer (nivel), e atribua com
$nivel = $sql[0];

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...