Hello World,
I have a problem.
I want show 2 images or 2 link videos or 1 images 1 link videos together but image/videos not appear, because 2 difference class.
class "img1" and "img2"
#image
<img alt="" title="" class="img1 or img2" src="images/<?php echo $vx->picture?>">
#video
<a href="http://www.youtube.com/watch?v=<?php echo $vx->video?>" class="img1 or img2"></a>
This code
<div class="tile tile-01 thumb">
<div class="tile-nav flipX">
<?php
$yt= mysql_query("Select * from foto ORDER BY RAND() DESC limit 0,2");
while ($vx = mysql_fetch_object($yt)) { ?>
<img alt="" title="" class="img1" src="images/<?php echo $vx->picture?>">
<?php } ?>
</div>
</div>
I'm confused, I've been looking for does not work :(