How to return only unique values from MySQL with a PHP script?

Foster

New member
I want to only return values that haven't already been returned. Example: mysql_query("SELECT example FROM example") with the example column containing "example1, example1, example2, example3, example3, example3" but i only want it to return "example1, example2, example3"
 
Back
Top