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
https://forums.phpfreaks.com/topic/25815-how-to-check-in_array-in-query/
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]

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.