In php something like this will do:

$query = "SELECT `manufacturer`, `product` FROM table ORDER BY `manufacturer` ASC, `product` ASC";
$result = mysql_query($query);

while($row =...