Welcome Guest, Not a member yet? Register   Sign In
Multiple Validations ..
#2

[eluser]Unknown[/eluser]
In your index function you made a small mistake

Code:
if($_POST['submit'] = "Verzenden"){
            $this->validateMail();
        }
        if($_POST['submit'] = "Aanmelden"){
            $this->validateLogin();
        }

Should be ...

Code:
if($_POST['submit'] == "Verzenden"){
            $this->validateMail();
        }
        if($_POST['submit'] == "Aanmelden"){
            $this->validateLogin();
        }

You're accidentally setting the $_POST variables instead of comparing them.

Simple mistake -- I make the same one more often than I'd like to admit Smile


Messages In This Thread
Multiple Validations .. - by El Forum - 10-16-2008, 11:30 AM
Multiple Validations .. - by El Forum - 10-17-2008, 05:08 AM



Theme © iAndrew 2016 - Forum software by © MyBB