Highslide galleri i php fil
hejjeg har dette kode i det oprindlige script:
---------
<table class="postpics" width="100%"><tr><td>
<!-- Version 5.0 -->
<?php
while ($row = mysql_fetch_array($pres))
{
$i++;
$imgsize = GetThumbnailSize("{$datadir[adpics]}/{$row[picfile]}", $images_max_width, $images_max_height);
?>
<img src="<?php echo "{$datadir[adpics]}/{$row[picfile]}"; ?>" id="adimg<?php echo $i; ?>" width="<?php echo $imgsize[0]; ?>" height="<?php echo $imgsize[1]; ?>"><br><br>
<?php
}
?>
</td></tr></table>
<?php
$imgcnt = $i;
}
?>
---------
og jeg vil gerne indsætte (www.highslide.com) koden (•No border and a floating caption) i min php fil
Hvordan?
Tak