ランダムな swf 変数を html にエコーしたいのですが、正しい結果が得られないようです。
firebug で確認すると、php コード php echo '$randomImage' が出力されていることがわかります。
私がこれまでに持っているもの:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html>
<head>
<style media="screen" type="text/css">
.content {
position: absolute;
height: 200px;
width: 400px;
margin: -100px 0 0 -200px;
top: 25%;
left: 50%;
}
</style>
</head>
<body>
<?php
$imagesDir = '/';
$images = glob($imagesDir . '*.{swf}', GLOB_BRACE);
$randomImage = $images[array_rand($images)];
?>
<div class="content">
<center><object width="675" height="517"><param value="<?php echo '$randomImage' ?>" name="movie"><embed width="475" height="317" type="application/x-shockwave-flash" src="<?php echo '$randomImage' ?>"></object></center><center></center>
</div>
</body>
</html>