hi all,
pls help me... i want to play multiple videos in videogallery...
but when i give click on anyvideo its not playing....
here is my code....
tnx in advnc....
<?php
$sql="Select * from video_gallery where prod_name LIKE '%$prod_name'";
$obj->query($sql);
$nume=$obj->num_rows();
while($row=$obj->query_fetch()) {
$code=$row["video_code"];
$cd=explode("/",$code);
?>
<div class="video"><iframe width="304" height="192" src="http://www.youtube.com/embed/<?php echo $cd[3]?>?autoplay=1" frameborder="0" allowfullscreen></iframe></div>
<?php
}
?>