<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Easy PHP Photo Gallery</title>
	<atom:link href="http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/</link>
	<description>Tips and Commentary on Web Accessibility, Usability, and Search Marketing best practices.</description>
	<lastBuildDate>Fri, 30 Jul 2010 16:56:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>By: Joe Dolson</title>
		<link>http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/comment-page-3/#comment-35037</link>
		<dc:creator>Joe Dolson</dc:creator>
		<pubDate>Fri, 30 Jul 2010 14:59:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/#comment-35037</guid>
		<description>I think that what I&#039;d do is probably just reverse sort the array of images when they&#039;re read from the file originally. I haven&#039;t looked at what this would take, specifically, but it seems like using &lt;code&gt;rsort()&lt;/code&gt; to change the order of the array would be useful, rather than recoding the logic.</description>
		<content:encoded><![CDATA[<p>I think that what I&#8217;d do is probably just reverse sort the array of images when they&#8217;re read from the file originally. I haven&#8217;t looked at what this would take, specifically, but it seems like using <code>rsort()</code> to change the order of the array would be useful, rather than recoding the&nbsp;logic.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/comment-page-3/#comment-35034</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Fri, 30 Jul 2010 10:37:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/#comment-35034</guid>
		<description>Hey Joe, Yeah I&#039;d like to let the gallery run backwards so that the last image added to the .txt file will be displayed first (in the thumbnails as well).

I managed to display the last image (full) after all when a is not set with;

	$lastImage = end($image);
	$display = $lastImage[0];
	$description = $lastImage[1];
	$alt = $lastImage[2];

+ a minor change to the previous button when a is not set, by declaring; &#039;$suma = ($suma - 1);&#039;

But the thumbnails themselves prove to be a bit harder. I reckon it has something to do with the $start and $finish variables but not entirely sure?</description>
		<content:encoded><![CDATA[<p>Hey Joe, Yeah I&#8217;d like to let the gallery run backwards so that the last image added to the .txt file will be displayed first (in the thumbnails as&nbsp;well).</p>
<p>I managed to display the last image (full) after all when a is not set&nbsp;with;</p>
<p>	$lastImage = end($image);<br />
	$display = $lastImage[0];<br />
	$description = $lastImage[1];<br />
	$alt =&nbsp;$lastImage[2];</p>
<p>+ a minor change to the previous button when a is not set, by declaring; &#8216;$suma = ($suma -&nbsp;1);&#8217;</p>
<p>But the thumbnails themselves prove to be a bit harder. I reckon it has something to do with the $start and $finish variables but not entirely&nbsp;sure?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jefferson mcgill</title>
		<link>http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/comment-page-3/#comment-35033</link>
		<dc:creator>jefferson mcgill</dc:creator>
		<pubDate>Fri, 30 Jul 2010 10:23:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/#comment-35033</guid>
		<description>I just saw your sample installation and there are good. You love animals? I really like your gallery. I am also an animal lover.</description>
		<content:encoded><![CDATA[<p>I just saw your sample installation and there are good. You love animals? I really like your gallery. I am also an animal&nbsp;lover.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Dolson</title>
		<link>http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/comment-page-3/#comment-35023</link>
		<dc:creator>Joe Dolson</dc:creator>
		<pubDate>Thu, 29 Jul 2010 22:26:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/#comment-35023</guid>
		<description>Do you mean that you want the pictures gallery to essentially run backwards, or do you mean that you&#039;d want to start with the last image, but then continue around in a circular fashion?</description>
		<content:encoded><![CDATA[<p>Do you mean that you want the pictures gallery to essentially run backwards, or do you mean that you&#8217;d want to start with the last image, but then continue around in a circular&nbsp;fashion?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/comment-page-3/#comment-35000</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Wed, 28 Jul 2010 19:02:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/#comment-35000</guid>
		<description>Hi there, great simple script! Very easy to use, although a bit messy ;P

I wondered if it&#039;s possible to let a gallery start (big + thumbnails) with the last pic added to the .txt file. I tried to fiddle around to get the last item in the array but can only get the array nmbr and not the actual img value. Prob my lack of php coding skills.

Would you know of a solution? That would be greatly appreciated!</description>
		<content:encoded><![CDATA[<p>Hi there, great simple script! Very easy to use, although a bit messy&nbsp;;P</p>
<p>I wondered if it&#8217;s possible to let a gallery start (big + thumbnails) with the last pic added to the .txt file. I tried to fiddle around to get the last item in the array but can only get the array nmbr and not the actual img value. Prob my lack of <abbr title="Hypertext PreProcessing">PHP</abbr> coding&nbsp;skills.</p>
<p>Would you know of a solution? That would be greatly&nbsp;appreciated!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rita</title>
		<link>http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/comment-page-3/#comment-34707</link>
		<dc:creator>Rita</dc:creator>
		<pubDate>Thu, 01 Jul 2010 18:13:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/#comment-34707</guid>
		<description>OMG, Joe, you are an incredibly generous man.  Not only do you provide an excellent script, you seem to also provide in-depth troubleshooting.  Kudos to you!  I admire your patience.</description>
		<content:encoded><![CDATA[<p>OMG, Joe, you are an incredibly generous man.  Not only do you provide an excellent script, you seem to also provide in-depth troubleshooting.  Kudos to you!  I admire your&nbsp;patience.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: willmar</title>
		<link>http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/comment-page-3/#comment-33618</link>
		<dc:creator>willmar</dc:creator>
		<pubDate>Sat, 27 Mar 2010 03:23:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/#comment-33618</guid>
		<description>Hi!

Nice piece of scripting.  I use it my website.  Is the skip to thumbnails link not really functioning?</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>Nice piece of scripting.  I use it my website.  Is the skip to thumbnails link not really&nbsp;functioning?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/comment-page-3/#comment-33108</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 29 Dec 2009 03:44:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/#comment-33108</guid>
		<description>Hi, have just started using the script and I think it&#039;s brilliant, but I have one problem. Is it possible when clicking on a thumbnail for the image and its description to appear in a popup window instead of next to the thumbnails? If so, what code do I need to change to make this happen?

Thanks in advance, Steve.</description>
		<content:encoded><![CDATA[<p>Hi, have just started using the script and I think it&#8217;s brilliant, but I have one problem. Is it possible when clicking on a thumbnail for the image and its description to appear in a popup window instead of next to the thumbnails? If so, what code do I need to change to make this&nbsp;happen?</p>
<p>Thanks in advance,&nbsp;Steve.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/comment-page-3/#comment-33086</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Thu, 24 Dec 2009 20:05:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/#comment-33086</guid>
		<description>Okay, thanks I&#039;ll see it then

greetings,  Mark</description>
		<content:encoded><![CDATA[<p>Okay, thanks I&#8217;ll see it&nbsp;then</p>
<p>greetings,&nbsp;Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Dolson</title>
		<link>http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/comment-page-3/#comment-33084</link>
		<dc:creator>Joe Dolson</dc:creator>
		<pubDate>Thu, 24 Dec 2009 20:00:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/03/easy-php-photo-gallery/#comment-33084</guid>
		<description>Hi, Mark - I&#039;ll try and find time to come up with a solution for you in January. Basically, you need to add a function to the script which organizes the galleries into groups, and indicates what order the galleries should sequence in, then automatically passes onto the next gallery when it reaches the end of the previous. It&#039;s not, on the whole, a complicated change, but it&#039;s not trivial.</description>
		<content:encoded><![CDATA[<p>Hi, Mark - I&#8217;ll try and find time to come up with a solution for you in January. Basically, you need to add a function to the script which organizes the galleries into groups, and indicates what order the galleries should sequence in, then automatically passes onto the next gallery when it reaches the end of the previous. It&#8217;s not, on the whole, a complicated change, but it&#8217;s not&nbsp;trivial.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
