Сегодня, в свободное время, решил по-быстрому написать подсветку текста типа той, которая на этом форуме. Многих она раздражает, мне нравится. Знаю-знаю, писать такую двухминутное дело, но штука довольно интересная, если кому надо, особенно новичкам, дерзайте. PHP: <?php // This string will be highlighted (without HTML) $source = "Этот текст подсвечен"; // This variable will contain the highlighted string $result = ""; // We should keep the last position $position = 0; // The length of the string $length = strlen($source); // Let's begin ... while ($position < $length) { $count = mt_rand(1, $length - $position); // The colors that will be used we write in HEX // That may alleviate writing of the new colors $red = mt_rand(0x0, 0xFF); $green = mt_rand(0x0, 0xFF); $blue = mt_rand(0x0, 0xFF); $result .= "<span style=\"color: rgb({$red}, {$green}, {$blue});\">".substr($source, $position, $count).'</span>'; $position += $count; } ?> Пример: HTML: <div style="font-family: sans-serif; font-size: 18px; font-weight: bold;"> <?php echo $result; ?> </div> Ыы, не бейте, я всё прощу :roll: