Jump to content
Fórum Script Brasil
  • 0

Erro com retorno de function em classe


sacofritoxd

Question

Boa tarde.

Estou com um problema.

Ao fazer uma consulta via orientada a objetos.

Estou tendo alguns problemas pois não consigo verificar o valor do retorno da function. não esta dando certo. Sempre cai no else da condição.

Já tentei passar direto o return assim> return $this->varControle;

já tentei passar 0 e 1

e nada deu certo.

Meu codigo está assim;.

include ('classes.php');

$retornovalidacao = new validacaoatendentes();

$retornovalidacao-> verificacampos();

if ($retornovalidacao == "OK"){

//verifica se os campos estão disponiveis

$retornovalidacao-> verificausuario($_POST['nome'], $_POST['login'], $_POST['senha']);

}

else{

echo "<script language=JavaScript'> alert('Nome, Login ou senha não foram preenchidos ou a confirmação da senha está incorreta.')</script>";

exit;

}

E no arquivoi classes.php

class validacaoatendentes{

private $varControle;

function verificacampos(){

$this->varControle = "";

if ($_POST['nome] == ""){

$this->varControle = "Nome não preenchido!<br>";

}

if ($_POST['login'] == ""){

$this->varControle = $this->varControle . "Login não preenchido!<br>";

}

if ($_POST['senha'] == ""){

$this->varControle = $this->varControle . "Senha não pode ficar em branco!<br>";

}

else{

if ($_POST['senha'] != $_POST['senha2']){

$this->varControle = $this->varControle . "Confirmação da senha incorreta!<br>";

}

}

if ($this->varControle != ""){

return "Faltou";

}

else{

return "OK";

}

}

function verificausuario($nome1, $login1, $senha){

// verifico se o nome, login e senha estão disponiveis

$sql = "SELECT nome, login, senha from atendentes where nome ='" . $this->nome1 . "'";

$sql = $sql . " or login ='" . $this->login1 . "' and senha = '" . $this->senha . "'";

$consulta = mysql_query($sql);

if ($consulta != 0){

return "Erro";

}

else{

return "";

}

}

}

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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...