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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T13:28:50+00:00 2026-05-31T13:28:50+00:00

I am trying to verify whether the method in my class is returning a

  • 0

I am trying to verify whether the method in my class is returning a true value. Please look at my object below the class and tell me if it is a valid statement. I am using this to verify whether an email address already exists in the database.

My class and it’s constructor

class CheckEmail {

public function __construct($email) {

$db = Database::GetHandler();

    $sql = "SELECT email from users WHERE email='$email'";
    $stmt = $db->prepare($sql);
    $stmt->execute();
    $rows = $stmt->rowCount();

    if($rows > 0) {

        return true;

    } else {

        return false;
    }
}

}

My object from this class:

if($checkEmail = new CheckEmail($_POST[email])==true) {...
  • 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-31T13:28:51+00:00Added an answer on May 31, 2026 at 1:28 pm

    Constructors cannot return a value, that doesn’t make any sense. Constructors are there to create (and return) an object of its class.

    You should make another function to do this check, and then call that.

    class CheckEmail {
    
        public function check($email) {
            $db = Database::GetHandler();
    
            $sql = "SELECT email from users WHERE email='$email'";
            $stmt = $db->prepare($sql);
            $stmt->execute();
            $rows = $stmt->rowCount();
    
            if($rows > 0) {
                return true;
            }
            else {
                return false;
            }
        }
    }
    

    (P.S. You can just do return $rows > 0;)

    And then you can call it like this:

    var $email = new CheckEmail;
    if($email->check($_POST[email]) === TRUE){
    // or just if($email->check($_POST[email])){
    

    Thing is, do you really need a class here? You could just declare the CheckEmail function normally, and not in its own class.

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

Sidebar

Related Questions

I am trying to verify whether an object is null or not, using this
i am trying to verify strings to make valid urls our of them i
I'm getting an issue while using EF4, when I'm trying to verify if object
I am trying to verify whether a variable that is passed can be converted
I'm trying to DirectoryInfo to verify whether a UNC path exists, however DirectoryInfo consistency
I am trying to verify that my Rails code calls ActiveRecord's all method (all
I'm trying to verify whether or not you can run reports against from the
I'm trying to verify whether a user has control of a domain as part
I am trying to verify whether a particular user exists on the local computer.
I'm currently trying to verify whether or not, given an unsorted array A of

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.