/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function createIDList($idList, $dbFieldName) { $orString = ''; foreach($idList as $id) { $orString .= "{$dbFieldName} = '{$id}' OR "; } } // ex: