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 =...
Type: Posts; User: Jordi Gran; Keyword(s):
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 =...