Beginner Help - Array

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This seems like it should work, but the option statement is just filling in one line of data....hmmmmm... the names have multiple territories (ID's), so I want to have one name associated with one territory ID ( other stuff happens elseware...).

//building list of names and their territory matching ID's
                          while($getidsd = mysql_fetch_array($getidsr)){
if ($getidsd['employeeid'] != '990'&& $getidsd['employeeid'] != '991') { $salespersonsstor= Array("name"=>$getidsd['fname'].' '.$getidsd['lname'],"idIS"=>$getidsd['employeeid']);
			   }
					}
				
                             asort($salespersonsstor);
                             $salesmanactive='';
                             $salesmann='';
                             $ID1='';

foreach ($salespersonsstor as $key => $TheSalesManID) {
                                 switch ($key) {
                                case "name":
                                 $salesmann = $TheSalesManID;
                                break;
                                case "idIS":
                                 $ID1 = $TheSalesManID;
                                          }

If (($salesmann != '' && $ID1 != '') && ($salesmanactive != $salesmann)) { echo '<option value="'.$ID1.'">'.$salesmann.'</option>';
                                 $salesmanactive=$salesmann;
                                 $salesmann='';
                                 $ID1='';
                                 }
}
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux