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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T17:49:38+00:00 2026-06-08T17:49:38+00:00

Possible Duplicate: When should I use require_once vs include? For example if I have:

  • 0

Possible Duplicate:
When should I use require_once vs include?

For example if I have:

header part(header.php)
footer part(footer.php)
list of functions (functions.php)
list of constants (constants.php)
connect to database part(connection.php)
footer part + close the connection part(footer.php)

In these example should I use include, require or require_once and please NOTE why?

  • 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-08T17:49:40+00:00Added an answer on June 8, 2026 at 5:49 pm

    For files that contain functions, classes and other utilities, you generally want require_once so that nothing is accidentally redeclared in multiple libraries (or something) and breaks stuff.

    • functions.php
    • constants.php
    • connection.php

    For files that are templates you usually want require, because they should be able to be included multiple times without causing issues. (Not that that’s likely in the particular case of these two files.)

    • header.php
    • footer.php

    You never* want to use include (or include_once). It’s like require, but only shows a warning when the file doesn’t exist – probably not what was intended.

    Now you noted that your footer closes the database connection. You generally want to avoid side-effects in template files. Moreover, closing the database connection is probably unnecessary. (And given that you can close it, here’s some advice: use PDO instead!)

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

Sidebar

Related Questions

Possible Duplicate: Why should I use templating system in PHP? I was just curious
Possible Duplicate: Understanding Enums in Java Why should we use enums rather Java constants?
Possible Duplicate: Why should I use a thread vs using a process? I have
Possible Duplicate: When should I use “final”? PHP has a keyword 'final', Could you
Possible Duplicate: When should you use 'friend' in C++? I have come to a
Possible Duplicate: Should I Use self Keyword (Properties) In The Implementation? Say I have
Possible Duplicate: When should I use a List vs a LinkedList This question is
Possible Duplicate: When should I use a List vs a LinkedList If I expect
Possible Duplicate: Should I use Elements or Attributes in XML? I have never been
Possible Duplicate: Should I use prototype or not? Closures in auto executing functions vs

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.