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 8432349
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T06:06:12+00:00 2026-06-10T06:06:12+00:00

Well, I come from compiled languages as Java and now I am trying to

  • 0

Well, I come from compiled languages as Java and now I am trying to deal with PHP in some specific areas. Today, I have created a “test form” in order to know how to check for valid values, and now I have a little problem.

Suppose that I have multiple fields to evaluate, using a boolean variable I would like to do something like this:

//ASSUMING THAT ALL IS CORRECT
$correct =  true;

$correct &= is_ok($name);
$correct &= is_ok($last_name);
$correct &= is_ok($nickname);
$correct &= is_ok($best_friend);

if (!$correct) {
    //AT LEAST ONE FIELD IS INCOMPLETE
}
else
{
    // EVERYTHING IS OK
}

function is_ok($field){
    return !empty($field);
}

The problem that I am issuing is that &= looks like is not working correctly. Do I need to use another boolean operator?

  • 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-06-10T06:06:13+00:00Added an answer on June 10, 2026 at 6:06 am

    Always read manual first:

    • http://php.net/manual/en/language.operators.bitwise.php
    • http://php.net/manual/en/language.operators.logical.php

    Bitwise operatiors != Logical operators

    I think you are looking for this:

    //ASSUMING THAT ALL IS CORRECT
    $correct =  true;
    
    $correct = $correct && is_ok($name);
    $correct = $correct && is_ok($last_name);
    $correct = $correct && is_ok($nickname);
    $correct = $correct && is_ok($best_friend);
    

    You should start form tutorials, basic lessons, basic documentation to avoid that kind of questions.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to find deployment tools for Java and have come across a few
I have come across scripts that use: isset($_POST['submit']) as well as code that uses:
Well, my website can not redirect to https://www.facebook.com/QuaFootSpa from http://quafootspa.com/ I have tried redirection
Well, I have a application which somehow requires some system resources, but how do
Well, i took a break from RoR for studies, now I am back, I
So, I don't come from a huge PHP background—and I was wondering if in
I'm new to the .NET world having come from C++ and I'm trying to
I come from C Background and have knowledge on C++(at least I know virtual
I come from a Codeigniter MVC background that we've been working with for some
well i have a configuration like this in the components part of my config

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.