Hello, here below is the script that i use, but i have to echo all out like this below. Funny: 1000 Cars: 500 Bikes: 10000 Crazy: 5.000.000 This script works, is there a way to short this script and to echo out like above and to continue so on ? Thanks. here is the script. <?php include 'connect.php'; $result = mysql_query("select count(1) FROM videos WHERE title LIKE '%Funny%'"); $row = mysql_fetch_array($result); $total = $row[0]; echo "</br>Funny: " . $total; $result = mysql_query("select count(1) FROM videos WHERE title LIKE '%Cars%'"); $row = mysql_fetch_array($result); $total = $row[0]; echo "</br>Cars: " . $total; $result = mysql_query("select count(1) FROM videos WHERE title LIKE '%Bikes%'"); $row = mysql_fetch_array($result); $total = $row[0]; echo "</br>Bikes: " . $total; $result = mysql_query("select count(1) FROM videos WHERE title LIKE '%Crazy%'"); $row = mysql_fetch_array($result); $total = $row[0]; echo "</br>Crazy: " . $total; mysql_close($connect); ?> PHP: