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

  • Home
  • SEARCH
  • 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 7828817
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T10:29:39+00:00 2026-06-02T10:29:39+00:00

I have a query (PHP, Mysql) a table named ‘table’ that looks like this:

  • 0

I have a query (PHP, Mysql) a table named ‘table’ that looks like this:

 id | name
-------------
  6 | abc
  10| xxx
  52| def

And a query:

$ids = '5,62'

$name = $pdo -> prepare('SELECT id, name FROM table WHERE id IN ( :ids )');
$name -> bindValue(':ids', $ids, PDO::PARAM_STR); 
$name -> execute();
$name = $name->fetchAll(PDO::FETCH_ASSOC);
print_r($nazwa);

I would expect to get a result like

 id | name
-------------
  6 | abc
  52| def

Unofrtunately i get only:

 id | name
-------------
  6 | abc

As if second value would be ignored. If I change the query to:

$name = $pdo -> prepare('SELECT id, name FROM table WHERE id IN (' $ids ')');

It all goes right. Can you tell me why prepared statement doesnt take under consideration imploded table with commas?

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

    Because the comment field does not allow to write that well, here an answer that is merely a comment:

    Let’s say you have two IDs:

    $name = $pdo->prepare('SELECT id, name FROM table WHERE id IN ( :id1, :id2 )');
    

    Let’s say you have three IDs:

    $name = $pdo->prepare('SELECT id, name FROM table WHERE id IN ( :id1, :id2, :id3 )');
    

    You see the pattern? You have as many values as you have IDs. Formulate the prepare statement as well as perform the bind statements accordingly to the number of IDs you have.

    So the answer is: You need to change your code so that it actually reflects the number of IDs you want to handle. The MySQL server will not magically interpret a comma-separated list inside a string as multiple IDs. Instead you need to tell the server about each single ID.

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

Sidebar

Related Questions

I have a PHP/MySQL query that returns to an HTML table, and I'm stuck
I have the following mysql query which I am running with php like so.
I have a php script that runs a mysql query, then loops the result,
I have a website that has an update query. Example. Table name -> myTable
Morning all! My MySQL query returns a PHP variable name which I'd like to
Possible Duplicate: php/Mysql query with inserting date fails I have a datepicker code below:
So i have this script: <?php $query = mysql_query( SELECT meetup AS text, id
Hi I have a query in PHP that calculates the sum of all the
I have the following php query... INSERT INTO `demographic2` (id, name, first_name, last_name, link,
I have a mysql database table to store country name and currency symbol -

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.