Beispiel #1
0
 /**
  * Function gets the brand details from the database 
  *		
  * @param string $selected	 
  * 
  * @return string
  */
 function dispBrand($selected = '')
 {
     $sql = 'select distinct brand,product_id from products_table group by brand asc';
     $obj = new Bin_Query();
     $obj->executeQuery($sql);
     return Display_DProductEntry::dispBrand($obj->records, $selected);
 }