witam
mam użyty taki rotator banerów:
<?php
$banery = file(\"rotator/banery.php\");
for($i=0;$i<1;$i++) {
list
($url,$title,$baner,$type,$width,$height) = explode('*|*', $banery[$i]);
if ( $type == \"application/x-shockwave-flash\" )
{
echo \"<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" class=\"banner\" codebase=\"http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0\"
id=\"$baner\" width=\"300\" height=\"38\">
<param name=\"movie\" value=\"rotator/gfx/$baner\">
<param name=\"quality\" value=\"high\">
<embed name=\"$baner\" src=\"rotator/gfx/$baner\" quality=\"high\"
width=\"$width\" height=\"$height\"
type=\"application/x-shockwave-flash\"
pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\">
</embed>
</object>\";
}
else
{
echo '<a href=\"'.$url.'\" target=\"_blank\" title=\"'.$title.'\"><img src=\"rotator/gfx/'.$baner.'\" border=1 align=right width=340 height=38></a>';
}
}
?>
ale przy dodawaniu chciałbym ustawiać priorytet wyświetleń (wysoki, normalny, niski) i nie mam pojęcia jak to zrobić...
wie ktoś może jak sobie z tym poradzić ?