this is my code :
<?php
$swf = file("MyTest.txt");
$j = count($swf);
for($i=0; $i<$j; $i++) {
echo "$swf[$i]<br>";
$tablecode = <<<EOTABLE
<EMBED id="testcommand" pluginspage="http://www.macromedia.com/go/flashplayer/" src="$swf[$i]" type="application/x-shockwave-flash" SCALE="SHOWALL" width="1024" height="768" QUALITY="high" LOOP="false" PLAY="true"> </EMBED>
EOTABLE;
echo $tablecode;
}
?>
the problem that i'm facing is it does display the flash one by one.it display all the flash in one shot.
for example : i have 3 flash file , all i want is display 1 flash file follow by the other.
thank you again.
regards,
elmo