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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T16:32:03+00:00 2026-06-05T16:32:03+00:00

Where there are so many ways to achieve the same result, I am wondering

  • 0

Where there are so many ways to achieve the same result, I am wondering which is the most efficient way of initializing a mysql connection.

Note: Recently I also discovered in the PHP documentation that mysql_connect is now DISCOURAGED, all my codes are currently using mysql_connect. Is there enough reason to switch?

What i’m trying to do is:

  1. create a database.php.
  2. PHP pages that are going to connect to database will include this file so that I don’t have to write a lot of code to connect to the database.

So what should this database.php do, in order to be most efficient.

1. $con = mysql_connect("etc"...)
   mysql_select_db("databse")

// from here I can include this file and start making queries. – Works but I’m not sure if its the best way.

2. //database.php
   $mysqli = new mysqli('localhost', 'user', 'pwd', 'database');
   // in other files
   $mysqli->query("SELECT ...")
  1. or should I use persistent connection? (The site is quite database-heavy, and there are going to be a lot of page generation, no more than 100 users simultaneously logged in)

Thank you in advance

  • 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-05T16:32:05+00:00Added an answer on June 5, 2026 at 4:32 pm

    I just changed all functions of MySQL extension in my code to PDO today.

    In order to be most flexible, you should create “database.php” with a general connection like this:

    <?php
    $pdo = new PDO('mysql:host=example.com;dbname=database;charset=UTF-8', 
                   'username', 
                   'password');
    

    Then in other page, use require() to include the file like this:

    <?php
    require('database.php');
    
    // Example with 'query'
    $queriedSQL = $pdo->query('SELECT * FROM table');
    
    // Example with 'prepare'
    $preparedSQL = $pdo->prepare('SELECT * FROM other_table WHERE id = ?');
    $preparedSQL->setFetchMode(PDO::FETCH_ASSOC);
    
    while($result = $queriedSQL->fetch(PDO::FETCH_ASSOC)) {
      $preparedSQL->execute(array($result['id']));
      $preparedSQLResult = $preparedSQL->fetch();
      // Process code here
    }
    

    In other way, you can make “index.php” as the core and then process the URL or $_GET[] to include the corresponding file (like all CMS system, WordPress, etc).

    That way you can avoid change amount of code when some data (host, username, password and/or database name) changed.

    About persistent connection, PHP allows it, but there are drawbacks as you can found in here.

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

Sidebar

Related Questions

In WPF there are many ways to achieve the same thing. In this example
WPF is great because there are many ways to achieve your goals. For example,
There are many ways of converting a String to an Integer object. Which is
There are many ways by which we can attach an event on an HTML
There're many ways to write an HTTP-status header: HTTP/1.1 404 Not Found Status: 404
There are many ways to Title Case in java . But how do you
As SpriteMethodTest says there are many ways for drawing sprites. Firstly, I tried canvas,
It seems there are many ways to do this, however, none of them make
I can see there are many ways to use jQuery safely in the javascript
When validating a document in the ItemAdding event there are many ways to display

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.