Question

I have a foreach function which groups an array of products, into seperate arrays depending on the 'dsid':

$products_array = array();
$products_query = tep_db_query("select products_id, products_name, drop_ship_id from " . TABLE_ORDERS_PRODUCTS . " where orders_id = '" . (int)$orders['orders_id'] . "' order by products_name");
while ($products = tep_db_fetch_array($products_query)) {
  $products_array[] = array('id' => $products['products_id'],
                            'text' => $products['products_name'],
            'dsid' => $products['drop_ship_id'],);
}

<?php
 $products = array();

  foreach($products_array as $current) {
    $dsid = $current['dsid'];
     $products[$dsid][] = $current; 
  }

 $splitproductsarray = array_values($products);
?>

Now I need to take splitproductsarray[] and compare each group of "dsid"'s to another table with the drop ship emails:

"select email from " . TABLE_DROP_SHIPPERS . " where id = splitproductsarray[]"

How can I assign a specific email to an individual group of products with the same dsid? Any help is appreciated!

Was it helpful?

Solution

Nice foreach ;)

Try this:

foreach($splitproductsarray as $dsid => $values) {
    $sql = "select email from " . TABLE_DROP_SHIPPERS . " where id = " . $dsid . " LIMIT 1";
    // do your query
}

OTHER TIPS

i think you want

$all_ids=implode(',', $splitproductsarray);

"select email from " . TABLE_DROP_SHIPPERS . " where id IN =($all_ids)"
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top