I have a news scrolling applet but that doesn't run at netscape 6
The applet runs fine in IE and older netscape versions upto 4.75.
The news heading are fetching from database using PHP mysql
I can show you the applet-PHP code here
<applet code="advnewsscroll.class" width="169" height="200">
<param name="info" value="">
<param name="regcode" value="">
<param name="input_text" value="from_parameters">
<param name="text_file" value="">
<param name="scroll_mode" value="scroll">
<param name="bgimage" value="news.gif">
<param name="image_xposition" value="0">
<param name="image_yposition" value="0">
<param name="bgcolor" value="C28585">
<param name="title_color" value="ffffff">
<param name="text_color" value="000000">
<param name="highlight_title_color" value="80a0d0">
<param name="highlight_text_color" value="50b5f0">
<param name="title_align" value="left">
<param name="text_align" value="left">
<param name="title_font_type" value="Helvetica">
<param name="title_font_size" value="11">
<param name="title_font_style" value="1">
<param name="text_font_type" value="Helvetica">
<param name="text_font_size" value="11">
<param name="text_font_style" value="0">
<param name="title_underline" value="no">
<param name="text_underline" value="no">
<param name="scroll_delay" value="30">
<param name="pause" value="3000">
<param name="border_thickness" value="0">
<param name="border_color" value="c0c0c0">
<param name="left_margin" value="10">
<param name="top_margin" value="10">
<param name="right_margin" value="5">
<param name="bottom_margin" value="10">
<param name="vertical_space" value="10">
<param name="title_linespace" value="0">
<param name="text_linespace" value="0">
<?
include("connect.php");
$sql="select * from news order by date_posted";
$exec=mysql_query($sql);
$num=mysql_num_rows($exec);
if($num>0)
{
$count=1;
while ($arow=mysql_fetch_array($exec))
{
$title="title".$count;
$text="text".$count;
$link="link".$count;
$target_frame="target_frame".$count;
?>
<param name="<?=$title;?>" value="<?=$arow['news_title'];?>">
<param name="<?=$text;?>" value="">
<param name="<?=$link;?>" value="<?=$systemUrl."/newsdetail.php?newsid=$arow[id]"?>">
<param name="<?=$target_frame;?>" value="_blank">
<?
$count+=1;
}
}
?>
</applet>
Let me see your reply as soon as posible
regards
Sethu