dpalame Posted August 12, 2011 Share Posted August 12, 2011 I have the following code: foreach ($at1 as $var) { $sql .= 'wfData.wfupc LIKE \'%' . $var . '%\' OR '; } $sql = substr($sql, 0, -4); var_dump($sql); $query = "SELECT wfStoreList.* FROM wfStoreList LEFT JOIN wfData ON wfStoreList.store=wfData.wfstore AND '$sql' WHERE wfData.wfstore IS NULL ORDER BY '$var',region,store ASC "; $result=mysql_query($query); This works great for all variables in the array, but what I need to do is loop all variables in $at1 array separately and output the data as I go. Can anybody help and/or point me in the right direction? Thank you for your help. Quote Link to comment https://forums.phpfreaks.com/topic/244612-looping-a-select-statement-for-an-array/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.