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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T18:24:09+00:00 2026-05-29T18:24:09+00:00

I have made a separate class to connect to my database and that class

  • 0

I have made a separate class to connect to my database and that class is in a separate PHP file:

connect.php

class connect{

    function __construct(){
        // Connect to database
    }

    function query($q){
        // Executing query
    }
}
$connect = new connect();

Now, I made the object of the class $connect and when use it in a file like index.php it works:

index.php

require_once('connect.php');
$set = $connect->query("SELECT * FROM set");

Now, here it works fine, I don’t have to recreate an object for the class and directly execute the query whereas in another file called header.php I have a class like this:

header.php

class header{

    function __construct(){
        require_once('connect.php');
        // Here the problem arises. I have to redeclare the object of the connection class
        // Without that, it throws an error: "undefined variable connect"
        $res = $connect->query("SELECT * FROM table");
    }

}

Why is it working in index.php and not in header.php?

  • 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-29T18:24:12+00:00Added an answer on May 29, 2026 at 6:24 pm

    Your problem was probably in using require_once() instead of require(). When you included connect.php for the first time it worked well because variable(s) were initialized and class loaded, but when you tried later again require_once() prohibited repeated inclusion and therefore no variable was initialized.

    Anyway, using include() inside constructor is… rarely justified. And including a file which will initialize local variables is bad idea too.

    The proper code would look like:

    <?php
        require_once('connect.php');
        require_once('header.php');
    
        $connect = new Connect();
        $header = new Header($connect);
    

    And header.php:

    <?php
        class Header{
    
            protected $connection = null;
    
            function __construct(Connect $connection){
                $this->connection = $connection;
                $res = $this->connection->query("SELECT * FROM table");
            }
    
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a trigger that stores changes made in a separate table when a
Do you agree that the designers of Java class java.io.IOException should have made it
I have designed a system that is made up of 3 separate applications: Web
I have made a .NET class library in C# that initializes some logging, sent
I have a set of functions that work on a file. Originally I made
I have made separate project for countdown timer and it is working fine. Now
I have a simple class that handles the connection being made between a client
I have made a new windows service which works fine using barebone code (just
I have made a class which a form can inherit from and it handles
I've made my Logger, that logs a string, a static class with a static

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.