/ Published in: PHP
Expand |
Embed | Plain Text
function createIDList($idList, $dbFieldName) { $orString = ''; foreach($idList as $id) { $orString .= "{$dbFieldName} = '{$id}' OR "; } } // ex:
You need to login to post a comment.
iloveitaly on 07/24/09
1 person have marked this snippet as a favorite
function createIDList($idList, $dbFieldName) { $orString = ''; foreach($idList as $id) { $orString .= "{$dbFieldName} = '{$id}' OR "; } } // ex:
You need to login to post a comment.