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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T07:57:51+00:00 2026-06-12T07:57:51+00:00

i am writing a customer database. I’ve got a function to show all customers

  • 0

i am writing a customer database. I’ve got a function to show all customers that looks like this.

<?php
class customer{

public function getAllCustomers(){
    global $database;
    $query = $database->query('SELECT * FROM hs_customers');
    $result = $database->statement->fetchAll();
    return $result;
}
}
?>

Until up here everything works well. Its connecting, im getting data and so on. The only thing i am unhappy with is i don’t want the database name to be hardcoded inside the function, furthermore i want it to be replaced by a variable. So id did the following (as i did before, and it worked out well) but suddenly it wont replace the variable anymore?…

<?php
class customer{

private $customerDB = 'hs_customers';

public function getAllCustomers(){
    global $database;
    $query = $database->query('SELECT * FROM :db', array(':db' => $customerDB));
    $result = $database->statement->fetchAll();
    return $result;
}
}
?>

I guess i’ve got something wrong. Any advice? 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-12T07:57:52+00:00Added an answer on June 12, 2026 at 7:57 am

    You cannot use variable containers on syntax that is used by SQL, e.g. a table name or anything else related to the syntax like order, group etc. So in order to dynamically do this you have to escape the SQL string and use it like

    $query = $database->query('SELECT * FROM '.($this->customerDB));
    

    — update for @TimG

    And because you are in a class environment, the variable $customerDB should be treated as a class property. You have to use $this-> assignment to use any property of a class, unless it is static in that case, use self::.

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

Sidebar

Related Questions

I'm writing a query that inserts customer data into a MSSQL database. Very basic.
This is my first attempt at writing a program that accesses a database from
Writing htaccess that allows me to remove index.php from the URL can confuse search
I'm writing an application which generates vCards from an internal customer database and would
I am writing a SharePoint web part that interacts with a SQL database, allowing
I am writing a PHP application in ZF. Customers will use it to sell
I am writing some code to find duplicate customer details in a database. I'll
Writing documentation in html requires some code examples. What to do with characters that
Writing a python program, and I came up with this error while using the
Writing a client application that sends images to a server via a webservice. As

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.