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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T16:33:56+00:00 2026-06-06T16:33:56+00:00

In my SQL database I have a query that turns values in multiple rows

  • 0

In my SQL database I have a query that turns values in multiple rows into a single concatenated string.

id    |    image_filename    |    slides    |    languages    |    types
-------------------------------------------------------------------------
10    |    filename.jpg      |    55,4     |        1         |    TN,CQ

In PHP I am trying to check to see which slides this image is associated with. If it is associated, that checkbox will be checked.

$isChecked = (strpos($slide,"5") !== false) ? " checked=\"checked\"" : "";

The problem is that the statement above will return true because there is a 5 contained in there. What needs to happen is it will return false because 5 does not equal 55.

How can I create something in PHP to check the values before each comma, and see if it matches a certain string that I can specify.

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-06-06T16:33:58+00:00Added an answer on June 6, 2026 at 4:33 pm

    Compare the actual values conjoined by the comma!

    $isChecked = in_array("5",explode(",",$slide))!=false?" checked=\"checked\"":"";
    

    See explode.

    Edit: Just noticed you only want to check the value BEFORE the comma only. This will actually be faster than creating an array from the string:

    $isChecked = "5"==strstr($slide,',',true)?" checked=\"checked\"":"";
    

    Assuming you have PHP 5.3+. See strstr

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

Sidebar

Related Questions

I need to be able to have an SQL query that searches my database
Possible Duplicate: SQL Server Database query help Hi, I have a problem that I
I am working on sql server monitoring product and i have database query that
I have a query that strips data from a XML string, inserts it into
I have a query that runs against a sql server database that produces a
I am trying to query SQL Server database from C# I have class Class_A
Given SQL as an input, I have to query a PostgreSQL database and return
I have created my database by this sql query: (CREATE DATABASE + DBName +
How can I query the database culture (SQL Server 2005) ? I have problems
In my SQL database I have a column that contains a fiscal year value.

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.