phpのみを使用して画像をスライドさせようとしています。次のコードを使用して、配列から画像をスライドさせてみました。ただし、新しいウィンドウにはフルサイズの画像が1つしか表示されません。コードは次のとおりです。次の画像のスライドショーを表示するには、ヘッダーに何を書き込む必要がありますか。および$images[$ i] = "uploads/".$img; フォルダパス「uplods」の画像名を$images配列に保存するのは正しいですか。
i have refer this site for code:
http://www.sitepoint.com/picture-showcase-php-html/
<?php
$sql="SELECT * FROM gallary WHERE aid='$aid'";
$res=mysql_query($sql);
$count=mysql_num_rows($res);
for($i=1;$i<$count;$i++)
{
$row=mysql_fetch_assoc($res);
$img=stripslashes($row['image']);
$images[$i]="uploads/".$img;
}//end of for
//print_r($images);
$total=count($images);
$secondsFixed=10; // seconds to keep list the same <br>
$seedValue=(int)(time()/$secondsFixed);
srand($seedValue);
for ($i=0;$i<$total;++$i) // shuffle list 'randomly' <br>
{
$r=rand(0,$total-1);
$temp =$images[$i];
$images[$i]=$images[$r];
$images[$r]=$temp;
}
$index=(int)($_GET['i']); // image index passed in <br>
$i=$index%$total; // make sure index always in bounds <br>
$file=$images[$i];
header("Location:"); // and pass file reference back <br>
?>
</div>
</div><!--End of right Container -->