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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T22:42:52+00:00 2026-05-24T22:42:52+00:00

I am creating a shortlist which is stored in a cake Session variable $this->Session->read(‘Item.shorlist’);

  • 0

I am creating a shortlist which is stored in a cake Session variable

$this->Session->read('Item.shorlist');

This contains a list of comma separated IDs eg. 1,2,3,4,5

$shortlist =  $this->Session->read('Item.shorlist');

I would like to perform a find operation using the comma separated IDs in this variable in the find conditions eg:

$shortlist = $this->Item->find('all', array('conditions' => array('Item.id' => array($shortlist))));

However, this only returns 1 set of data.
If I manually put in an array eg:

$shortlist = $this->Item->find('all', array('conditions' => array('Item.id' => array(1,2,3,4,5))));

I get all 5 records returned.

Any ideas how to get around this without performing multiple finds on each id? If I look at the SQL dump I can see WHERE Item.id = (‘1,2,3,4,5’) using the $shortlist variable whereas if I input it manually as comma delimited integers eg: WHERE Item.id IN (1, 2, 3, 4) then the sql query works as I would like it to.
So I guess my question is how to convert a comma delimited string to comma separated integers within a variable so that the SQL does not throw an error?

  • 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-24T22:42:54+00:00Added an answer on May 24, 2026 at 10:42 pm

    When you retrieve the session value by using this line $shortlist = $this->Session->read('Item.shorlist'); will be a string, please make sure it be an array.

    Use explode $short_list_array = explode(',', $shortlist); function to convert it into array and use

    $shortlist = $this->Item->find('all', array('conditions' => array('Item.id' => $short_list_array)));

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

Sidebar

Related Questions

(creating a separate question after comments on this: Javascript redeclared global variable overrides old
Creating Traversals for Binary Search Tree with Recursion. void inOrder(void (*inOrderPtr)(T&)) { if(this->left !=
What's the shortest way (characters) of creating a new function alias. Basically this is
Creating a watch on a TreeNode , for example, displays an expandable watch item
Creating a mini-database with access, i came across this problem: For the background, i
Creating function to print question, add choices to a list. def print_et_list (): answer_list
Creating this ajax styled wordpress portfolio theme and I'm a little stuck on how
Creating a CMS, I have a settings table, in which I store many CMS
Creating a voting system just like stackoverflow. Questions like this have been asking several
Creating the permutations of a list or set is simple enough. I need to

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.