Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 339279
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T10:30:30+00:00 2026-05-12T10:30:30+00:00

How can you get 1 as an output from #2? #1 I ran this

  • 0

How can you get 1 as an output from #2?

#1

I ran this code

echo validate_email ( $email );
echo validate_password ( $password );
echo validate_username ( $username );  

I get

111

which means that everything is ok.

#2

I run this code

function validate ( $email, $password, $username ) {
    if (  (validate_email ( $email ) == 1)
        AND (validate_password ( $password ) == 1)
        AND (validate_username ( $username ) == 1 ) )
            return 1;
}
echo validate ($email, $password, $username );

I get nothing as an ouput.

I tried to fix the problem by changing AND to && but the same output remains.
The output should be 1.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T10:30:30+00:00Added an answer on May 12, 2026 at 10:30 am

    You get nothing as output because you are only returning 1, not actually echo-ing it. Things don’t get echo-ed to the user unless you tell PHP to do so.

    Example:

    function test() {
        if (  (validate_email ( $email ) == 1)
            AND (validate_password ( $password ) == 1)
            AND (validate_username ( $username ) == 1 ) )
                return 1;
        else
                return 0;
    
    echo test();
    

    Also, here are a couple of points on if in general:

    • You should probably use && instead of AND as the former is more common.
    • You don’t need the == 1 bit in there – 1 is always TRUE. Example:

      if ( validate_email($email) ) // correct email
      

      Instead of:

      if ( validate_email($email) == 1 ) // correct email
      
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

any idea how i can get the code below to produce this output? 1
How can I get output from Java anonymous classes? In .Net I would use
How can you get unbuffered output from cout, so that it instantly writes to
I've just been experimenting with MPI, and copied and ran this code, taken from
I can't get to the bottom of why my output variable in the code
Using log4net 1.2.11.0 w/ .NET, how can I get the RollingFileAppender to output UTC
How can i create an attribute with a namespace? To get the following output?
I can get easily see what projects and dlls a single project references from
Logging can get complicated, quickly. Considering that you have some code, how do you
I ran truss command on executable and get the below output: stat64(/net/xyzmachine/vol/tools/solx64/studio11/SUNWspro/lib/rw7/librt.so.1, 0x080474A0) (sleeping...)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.