[eluser]Unknown[/eluser]
Hi everybody!
I heard about CI with one month ago and now I work in an big project. I have a problem and I don't know how can I solve it. I'm able to see the video only if I display one movie. If in my data base for the same choose I have to display many videos, the buttons becomes useless. I really need help.
Thanks
<?php
$cpt = 0 ;
foreach($query as $items)
{
echo ("<td rowspan=3 align=right valign=top><b><div> <object classid='" ."clsid:E23FE9C6-778E-49D4-B537-38FCDE4887D8" ."'codebase='" ."http://downloads.videolan.org/pub/videolan/vlc/latest/win32/axvlc.cab" ."'width='" ."440" ."'height='" ."280" ."'id='" ."video1" ."'events='" ."True" ."'><param name='" ."Src" ."'value='" ."C:\\xampp\\htdocs\\public\\video\\" .$items->file ."'/><param name='" ."ShowDisplay" ."'value='" ."True" ."'/><param name='" ."AutoLoop" ."'value='" ."True" ."'/><param name='" ."AutoPlay" ."'value='" ."False" ."'/><embed type='" ."application/x-vlc-plugin" ."'name='" ."video1" ."'autoplay='" ."False" ."'loop='" ."True" ."'height='" ."280" ."'width='" ."440" ."'border='" ."1" ."'target='" ."C:\\xampp\\htdocs\\public\\video\\" .$items->file ."'/></object><br><input type='" ."button" ."'class='" ."submit" ."'style='" ."width:50px;height:25px" ."'value='" ."Play" ."'onClick='" ."document.video1.play();" ."'><input type='" ."button" ."'class='" ."submit" ."'style='" ."width:50px;height:25px" ."'value='" ."Pause" ."'onClick='" ."document.video1.pause();" ."'><input type='" ."button" ."'class='" ."submit" ."'style='" ."width:50px;height:25px" ."'value='" ."Stop" ."'onClick='" ."document.video1.stop();" ."'><input type='" ."button" ."'class='" ."submit" ."'style='" ."width:80px;height:25px" ."'value='" ."Fullscreen" ."'onClick='" ."document.video1.fullscreen();" ."'></div></td></b>\n");
$cpt++;
}
?>