Hi All,
Again.. a little off topic - sorry (again!).
Have a form that allows me to select a bunch of product names from a
drop down combo box.
I'm trying to create code like "in ('Product name1','Product Name2) to
be inserted into an SQL statement.
I figured that since $products was ALREADY in an array format the code
below would work.. but it doesn't:
$prod_search = "in(";
for ($i=0;$i<count($products);$i++) {
$prod_search .= escapeValue($products[$i]);
if ($i != (count($products) - 1)) {
$prod_search .= ",";
}
}
$prod_search .= ")";
Can anyone see where I am going wrong?
Thanks!
Aaron