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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T15:53:01+00:00 2026-05-10T15:53:01+00:00

This is a bit of a weird one, and I could well be coding

  • 0

This is a bit of a weird one, and I could well be coding this completely wrong – hence why I’ve hit the same error twice in two days, in completely different parts of a script. The code I’m using is below:

     public function findAll( $constraints = array() ) {          // Select all records         $SQL = 'SELECT * FROM ' . $this->tableName;          // See if there's any constraints         if( count( $constraints ) > 0 ) {             $SQL .= ' WHERE ';              foreach( $constraints as $field => $value ) {                 $SQL .= $field . ' = :' . $field . ' AND ';             }          }          // Remove the final AND and prepare the statement         $SQL = substr( $SQL, 0, -5 );                $PDOStatement = $this->PDO->prepare( $SQL );          // Loop through constraints and bind parameters         foreach( $constraints as $field => $value ) {             print 'Binding ' . $field . ' to ' . $value . ' 
'; $PDOStatement->bindParam( $field, $value ); } $PDOStatement->execute(); var_dump($PDOStatement); while ( $results = $PDOStatement->fetch( PDO::FETCH_ASSOC ) ) { var_dump($results); } }

I’m pretty new to using PDO, but basically I’m attempting to pass an array of constraints e.g.

array( 'active' => 1, 'name' => 'James' )

and return all rows from the table

WHERE active = 1 AND name = 'James'

If I use this array, the SQL executed from the first

var_dump( )

is

SELECT * FROM {table} WHERE active = :active AND name = 'James'

– exactly as I expect. The bound parameters prints ‘Binding active to 1’ and ‘Binding name to James’ – exactly as expected. The rows exist in the database, and yet the second

var_dump()

call for $results outputs nothing – i.e. no rows are returned.

If I pass an array of a single constraint, e.g.

array( 'active' => 1 )

, this works perfectly fine. It appears to be whenever multiple constraints are passed that it stops working.

  • 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. 2026-05-10T15:53:02+00:00Added an answer on May 10, 2026 at 3:53 pm

    That’s because bindParam works by binding to a variable, and you are re-using the variable ($value) for multiple values. Try with bindValue instead.

    Or even better yet; Pass the values as an array to execute instead. This makes the statement stateless, which is generally a good thing in programming.

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

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Have you tried looking into the ServiceSecurityContext? May 12, 2026 at 6:11 am
  • Editorial Team
    Editorial Team added an answer It looks like your making a list of functions to… May 12, 2026 at 6:11 am
  • Editorial Team
    Editorial Team added an answer numero is not a numeric value, it is a pointer… May 12, 2026 at 6:11 am

Related Questions

Now this is a weird one We have a project where we are reading
This one is weird, I have a page that consists of a html table
Bit of a weird one: I was told a while ago by a friend
I have a bit of a weird problem. I have a form with a

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.