Slideshow Magic - project seven

12 posts by 5 authors in: Forums > CMS Builder
Last Post: September 18, 2008   (RSS)

Re: [Frank the Tank] Slideshow Magic - project seven

By Kenny - September 18, 2008 - edited: September 18, 2008

Hi Frank -

Glad you got it working - it has a neat effect on the pictures!

A lot of the code that the code generator generates is optional.

Pretty much anything between:

<?php foreach ($....... as $record): ?> and <?php endforeach; ?>

can be deleted. Also anything above or below those lines can be deleted as well except for the top of page code.

That being said, if you want to remove _link : /gallery.php?Shiners-Whiskey-Walk-1 then remove _link : <a href="<?php echo $record['_link'] ?>"><?php echo $record['_link'] ?></a><br/>


Think of it this way; you only show what you want to show. If all you are looking for is to show pictures and the album name and date then just use the Step2A Code, <?php echo $record['album'] ?>, and <?php echo date("D, M jS, Y g:i:s a", strtotime($record['date'])) ?> (and of course the php foreach code we talked about above).

Let me know if that doesn't make sense and I'll try to explain a little further.

Kenny