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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T05:48:28+00:00 2026-05-24T05:48:28+00:00

I am writing a simple PHP script that make use of DB to export

  • 0

I am writing a simple PHP script that make use of DB to export some products. My code starts like

$host = "localhost";
$user = "";
$pass = "";
$database = "";

letting user to add those info. However is there any way to make use configuration.php file that it is saved in the same directory

What I did is this but I didn’t got any result

require('configuration.php');
echo $user;

This is the configuration.php file

<?php
class JConfig {
var $dbtype = 'mysql';
var $host = 'localhost';
var $user = 'user';
var $password = 'pass';
var $db = 'db';
}
?>
  • 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-24T05:48:30+00:00Added an answer on May 24, 2026 at 5:48 am

    If you use a class for the configuration (why ?) then you have to initialize it. or use static class vars.

    require('configuration.php');
    
    $config = new JConfig;
    echo $config->user;
    

    you could also use just defines e.g

    define('DB_USER', 'yourusername');
    define('DB_PASS', 'yourpassword');
    

    after include/requiring it, you just do:

    echo DB_USER;
    

    Reference : http://php.net/manual/en/language.oop5.static.php


    EDIT: after your edit i think you mean something diffrent.

    you will need 2 config files.
    config_default.php
    config.php

    users write their config in config.php you have yours in config_default.php

    you will have to include config_default.php first and than config.php. be notet this only works with variables. if you use classes you will have to write code to init the classes with the correct configuration variables.

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

Sidebar

Related Questions

i've been writing a simple text to speech php script that works with festvox,
I am looking for a simple script that I can use to send some
I'm writing a simple php/mysql script that gets all ads I have in my
I'm writing a fairly simple register php script that uses PHP's built in mail()
I'm writing a PHP script that performs simple actions to a data base. In
I'm writing a PHP script and the script outputs a simple text file log
I'm writing a simple web app in PHP that needs to have write access
I'm looking into writing simple graphics code in Android and I've noticed some synchronized()
I'm writing a PHP script that I want to disable from web access (I
I have been writing some code that creates a generic blog. Its features are

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.