Repeat horizontically
Hi there.
I use this to repeat some images which dispay them in vertical mode... Could it be possible to display them horizontically?
<?php
$wa_startindex = 0;
while(!$photos->atEnd()) {
$wa_startindex = $photos->Index;
?>
<a href="<?php echo($photos->getColumnVal("photo_path")); ?>" target="new">
<img src="<?php echo($photos->getColumnVal("photo_path")); ?>" width="300" height="125" style="margin-left: 0px; margin-top: 0px; margin-bottom: 3px; border: 1px solid rgb(255, 255, 255); border-radius: 1px; -webkit-box-shadow: rgb(136, 136, 136) 0px 0px 2px 0px; position: top; " border="1" ></a>
<?php
$photos->moveNext();
}
$photos->moveFirst(); //return RS to first record
unset($wa_startindex);
unset($wa_repeatcount);
?>
Thank's
/kostas