SOLVEDThis is the code for banner on home page.. Its in random order now, can some one provide me with solutions to change it from being random? Please help me.
PHP Code:
$timeoutseconds = 300;
$timestamp = time();
$timeout = $timestamp-$timeoutseconds;
$rotator=mysql_query("SELECT id,img,title,info,link FROM rotator ORDER BY RAND() LIMIT 0,4");
$a=0;
while(list($id,$img,$title,$info,$link)=mysql_fetch_row($rotator)){
$max_length = 70;
if (strlen($title) > $max_length){
$title = substr($title,0,$max_length);
$title .= "..."; }
$imageid[$a]=$id;
$imagesrc[$a]=$img;
$imagetitle[$a]=$title;
$imageinfo[$a]=$info;
$imagelink[$a]=$link;
$a++;
}
Comment