Jump to content

How to check in_array in query


t_machine

Recommended Posts

hi, I am wondering if anyone could help with this problem I am having.
I need to check if values in a table match that in an array.

example
$myarray = array();

$myarray['color']="red";
$myarray['drink']="pepsi";

$query =..... SELECT * FROM tablename Where in_array(column_name, $myarray)....

Can something like that work or would i need to display the results first then check if in array?

Thanks :)

Link to comment
Share on other sites

Perhaps a query can be constructed using the array to give the results you're looking for. You'd have to explain in greater detail how the array should be looked at in relation to the information in the database.

For instance, if the keys aren't relevant to the search then you can use something similar to
[code]
<?php
$query = 'SELECT * FROM table WHERE column IN ("'.implode('","', $array).'")';
?>
[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.