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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:41:28+00:00 2026-05-15T10:41:28+00:00

So I have this database class in PHP and I only have 1 function

  • 0

So I have this database class in PHP and I only have 1 function in it (other than __construct and __destruct. Let me explain further…

I had originally written it so when I connected to a database I would just call my function connect_to_db() which returned a mysqli object. I then used this objects functions (->query(), ->prepare(), ->bind_param(), et cetera..) to do whatever. This cluttered (and still is as I haven’t switched my code over to my new class yet) with a lot of functions that just do specific things, for example:

function get_country_info($db, $usrid) {
  $statement = "select `name`, `population`, `money`, `food` from `countries` where `usr_id` = ?";
  $qry = $db->prepare($statement) or
    trigger_error("get_country_info():statement failed...");
  $qry->bind_param("i", $usrid);
  $qry->execute();
  $qry->bind_result($name, $population, $money, $food);
  $qry->fetch();
  $res = array("name" => $name, 
    "pop" => $population, 
    "money" => $money, 
    "food" => $food);

  return $res;
}

And what I originally planned to do was just to throw these into a class for clarity, but what I actually ended up doing was creating a class that when created creates a mysqli object for a specific database (supplied via an argument) and when destroyed closes off this link. I very much like not having to worry about typing $db->close(); as when the script finishes executing the connection is closed.

It only has 1 other function; query(). This function can handle any query put forth and outputs it as a multidimensional array. It uses eval(). From what I understand this is generally frowned upon – but eval() is so useful; so why is it frowned upon?

I guess the function may be slow, but seen as I’m just using it for a pet project (browser based country management game) and I haven’t noticed anything I’m not worried about that at all. What I am worried about is whether people would generally do this in the ‘real world’ or whether there is some sort of standard by which people do this, or perhaps something included (or add-on-able) in PHP which is usually used?

I’m self taught, so sometimes I don’t really know the best way to go about doing things. Perhaps somebody could advise me here?

The function in question can be seen here: http://pastebin.org/353721, as its ~60 lines and I don’t want to clutter the page. I also haven’t extensively tested it (I don’t even know what unit tests are, so I test by using the function in a lot of different ways) so it may have problems I’m not aware of that you guys can point out.

Thanks.

  • 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-15T10:41:29+00:00Added an answer on May 15, 2026 at 10:41 am

    Doesn’t seem to me too bad. You have basically done a really basic wrapper around the database, and you performed the very first step in database independence, which is good.

    This can be good for small and well organized projects, but once you will start going more complicated, you will soon notice that your approach has one large disadvantage: you still have your SQL queries split around the site. The day you will change anything in the database, you’ll need to go through all your site and look for all the SQL statements: this is bad (I had to do it once…).

    You should now move all the SQL code to one place. So there are various options. In a similar context, I made the query() method protected, then made the Db class “abstract” and subclassed it. Each subclass is a class which contains several methods relative to a specific set of tables, and this is the only place where you find SQL. All the rest of the project can only call these methods.

    Or, even better, you could use an ORM (oblect relational mapper) which would map each table to an object.

    For what concerns the evils of evals: I never used them. But I thought I wasn’t going to use a “goto” because it’s evil, and then I found the magic place where that was the perfect fit. So, if you have investigated all the possibilities, and you think that’s the optimal solution… use it.

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

Sidebar

Ask A Question

Stats

  • Questions 428k
  • Answers 428k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer A horizontal StackPanel will always give its children their desired… May 15, 2026 at 1:21 pm
  • Editorial Team
    Editorial Team added an answer Many answers are possible. This one relies on the fact… May 15, 2026 at 1:21 pm
  • Editorial Team
    Editorial Team added an answer I believe you want to do this : var dirUserSelected… May 15, 2026 at 1:21 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.