Her rengin sayısını bilmek nasıl mySQL sorun

0 Cevap php

Bunun üzerine görüntüleri ile veritabanı var

Örnek:

i have 5 of clothes images and from this 6 there are two images with blue color, 3 images with pink and the last one with green color.

and i have a search input , i want tell the user when he search for clothes the number of each color. i want the output like this : blue(2) - pink(3) - green(1)

ben bunun için aranan kelime sayısını anlamaya biliyorum,

$query = mysql_query("SELECT * FROM images WHERE classification='$request'");

$num = mysql_num_rows($query);

ama ne ben istiyorum bunun için aranan kelime için her rengin sayısını bilmek nasıl.

0 Cevap