I'm successfully using Triptracker's PHP for slideshows such as http://www.henniker.org.uk/html/SampleSlideshow.php. To use an existing folder I have to move co-existing thumbnails to another folder otherwise it shows them too.
My thumbnails are named the same as their full size image but with _w.jpg at the end and I'd like to test for this so as to NOT include the thumbnails in the array.
The loop which creates the array:
<?php
require "../Scripts/common.php";
$images = getImagesInPath("../images/places/local_a/ed_sth/steeple");
foreach ($images as $image)
{
echo "slideshow.add('$image');\n";
}
?>
I can't seem to get hep from the How To page http://slideshow.triptracker.net/howto.html
Grateful thanks for any help



