oto on
<?php .tag_cloud { padding: 3px; text-decoration: none; } .tag_cloud:visited { color: #019c05; } .tag_cloud:hover { color: #ffffff; background: #69da03; } .tag_cloud:active { color: #ffffff; background: #ACFC65; } function get_tag_data() { $arr[$row['tag']] = $row['count']; } return $arr; } function get_tag_cloud() { // podstawowe rozmiary czcionki $min_font_size = 10; $max_font_size = 20; $spread = 100; // Pull in tag data $tags = get_tag_data(); //Finally we start the HTML building process to display our tags. For this demo the tag simply searches Google using the provided tag. $cloud_html = ''; foreach ($tags as $tag => $count) { $size = round($min_font_size + ($count - $minimum_count) * ($max_font_size - $min_font_size) / $spread); . '\" class=\"tag_cloud\" href=\"news.php?tag=' . $tag . '\" title=\"'' . $tag . '' zwróciło liczbę kliknięć ' . $count . '\">' } return $cloud_html; } ?> Chmura tagów :
Problem : nie wiem gdzie wcisnąć kod do dodania kliknięcia w tag

Chcialem dodać coś takiego ,ale to nie działa . ;/
<?php if($_GET['fraza']=='$tag') { $row['count']++; $id=$row['id']; $count=$row['count']; } ?>