ok well here is the table structure
# Table structure for table `rims`
#
CREATE TABLE `rims` (
`part_number` int(11) NOT NULL default '0',
`name` text NOT NULL,
`color` text NOT NULL,
`image` text NOT NULL,
`size` text NOT NULL,
`offset` text NOT NULL,
`bolt_circle` text NOT NULL,
`weight` text NOT NULL,
`price` int(11) NOT NULL default '0',
UNIQUE KEY `part_number` (`part_number`)
)
I have multiple records for the same type of rims (car rims), and i want, on a main selection page, show all the rims available for the car, but not multiples of the same type of rim. Basically I want it to select only one of each with a unique field value for name, and when they click on the link, they are taken to the page with all the records with the appropriate value for the field name