I need to SELECT with array list. $array_name contains:
Array ( [0] => gum.cn [1] => lol.com. [2] => ns1.blar.com [3] => test.com [4] => web.cn. )
print_r($array_name);
$string = implode(',',$array_name); $tank = "SELECT url FROM `PHP`.`db` WHERE url LIKE '%{$string}%'"; $result1 = mysql_query($tank); while ($jwp = mysql_fetch_array($result1)) { echo $jwp['url']; echo "<br>"; }
Why don't the above work? I search other example and the question is asking without using LIKE clause so no solution there. Please help, thanks in advance.
.characters, which are wildcards in regex. You can escape them, but it's too much work for such a trivial matter IMO. Although it can be considered.