PROBLEM SOLVED! (at least for php)
Sending DM’s didn’t work as well for me when using the while() command to get the Account id’s from a mysql database. However using the foreach() command WORKS! So it now looks like this:
while($row = $db->fetch_array($getdmids))
$dmrows[] = $row;
foreach($dmrows as $row)
{
...
}
Just doing the while first and then putting the array into a foreach 
Tell me if it works for you as well 