Hi,
Gibt es TagClouds "Wort Wolke" als Modul?
Weil wollte aus meiner Datenbank ne Tabelle auslesen und als Wolke ausgeben.
Gruß htdocs
Hier kann eine Notiz zum Merk-Eintrag hinzugefügt werden (optional)
Geschlossen |
1 2 3 4 5 | $db ..; while ($row = db_fetch_object($db)) { $i = rand(8,22); $output = '<a href="'.$row->link.'" style="font-size:'.$i.'pt;">'.$row->text.'</a>'; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <?php //By Norman ################ $limit = 30; // Anzahl ################ $abf = "SELECT * FROM `prefix_test` ORDER BY titel DESC LIMIT 0," . $limit ; $erg = db_query( $abf ); while ( $row = db_fetch_object( $erg )) { $i = rand(8,22); echo '<a href="index.php?test_details-' . $row ->id. '" style="font-size:' . $i . 'pt;">' . $row ->titel. '</a>' ; } ?> |
Geschlossen | ||
![]() |
Zurück zu Allgemein |