私はPHPが初めてで、コードを求めているだけのようですが、実際にはランダムセレクターと一緒にリンクを実装する方法を知りたいです。
私のコード:
<?php
$imglist='';
//$img_folder is the variable that holds the path to the swf files.
// see that you dont forget about the "/" at the end
$img_folder = "../files/flash/";
mt_srand((double)microtime()*1000);
//use the directory class
$imgs = dir($img_folder);
//read all files from the directory, ad them to a list
while ($file = $imgs->read()) {
if (preg_match("/\.swf$/i", $file))
$imglist .= "$file ";
} closedir($imgs->handle);
//put all images into an array
$imglist = explode(" ", $imglist);
$no = sizeof($imglist)-2;
//generate a random number between 0 and the number of images
$random = mt_rand(0, $no);
$image = $imglist[$random];
//display random swf
echo '<embed src="'.$img_folder.$image.'" quality="high"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" width="650"
height="450"></embed>';
?>
これは基本的に、サイトのディレクトリからランダムなフラッシュ ファイルを取得します。URL バーには影響しないため、好きなものを誰かに送信することはできません (これは意図しないセキュリティ機能です)。リンクを送信するか、直接クリックしてダウンロードできるようにしたい.
また、可能であれば、ランダムジェネレーターと同様に、選択したディレクトリ内のすべての .swf をスクロールできる左右の矢印を作成することも考えていました。
サイトは www.nsgaming.us で、テキスト ロゴの下にある [ランダム] ボタンです。