PHP question

Associate
Joined
25 Jul 2005
Posts
430
Hi,
I'm calling a method from a class and I would like to display some text based on whether a true or false value is returned. I haven't included all the code, but this is the important bit.

$newuser = new User($username, $firstname, $lastname, $email, $pass);

$newuser->validate_username_length($username);

If the validate_username_length method returns true, I would like to echo one string and if it's false, I'd like to echo a different one.

Can anyone help me out?

Cheers.
 
From a design perspective, there's no need to pass $username into the validate_username_length method, since it already has access to it as an object property.
 
Back
Top Bottom