عندي اخر عشر مواضيع يعمل بشكل ممتاز
السؤال اريد ان اغير اللون كيف اعرف كود اللون لاني بحث ولم اجده
http://www.brgss.com/phpBB2/topic10phpBB2.php
--------------------------------
الكود هذا
او اسحب الكود

==========

<?
/*
phpBB2 Hack
هاك آخر عشر مواضيع
شريط متحرك
Author: secra4
http://www.fut4.com
Date: 2002-04-22
Version 1.0
لاي ملاحظه يرجى المراسله
secra4@hotmail.com
*/
PRINTF("<html dir=rtl>");
$LIMIT=10; //عدد المواضيع في الشريط
$exforum= array(11,); //array(11,) 11,
define('IN_PHPBB', true);
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);

$fut="";
IF(count($exforum)):
$fut="where ";
FOR ($Q=0;$Q<=count($exforum)-1;$Q++){
if ($Q== count($exforum)-1):
$fut.="forum_id <> '".$exforum[$Q]."' ";

ELSE:
$fut.="forum_id <> '".$exforum[$Q]."' and ";
ENDIF;
}
ENDIF;
PRINTF("<marquee direction=\"right\" dir=rtl scrolldelay=\"100\">");

$QUERY = "SELECT * FROM phpbb_topics ".$fut." ORDER BY topic_time DESC limit $LIMIT";
$result = mysql_query($QUERY);
$topics=mysql_num_rows($result);




while($myrow= mysql_fetch_array($result)) {
IF($myrow["topic_status"]==0):
PRINTF(" <a target='_blank' href='viewtopic.php?t=%s'> <n>%s</n>\n\n</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;",
$myrow["topic_id"], $myrow["topic_title"]);
ENDIF;
}

PRINTF( "</marquee>");
?>
</html>