<?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: Simple Slideshow</title>
	<atom:link href="http://www.lateralcode.com/simple-slideshow/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lateralcode.com/simple-slideshow/</link>
	<description>A Web Development Blog Focused on Code and Technology</description>
	<lastBuildDate>Thu, 09 Sep 2010 08:55:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>By: jules</title>
		<link>http://www.lateralcode.com/simple-slideshow/#comment-3443</link>
		<dc:creator>jules</dc:creator>
		<pubDate>Mon, 23 Aug 2010 19:22:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=587#comment-3443</guid>
		<description>This is great! Thanks! Would you know how to make the pictures repeat at the end of the cycle and start over from the beginning?</description>
		<content:encoded><![CDATA[<p>This is great! Thanks! Would you know how to make the pictures repeat at the end of the cycle and start over from the beginning?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick</title>
		<link>http://www.lateralcode.com/simple-slideshow/#comment-3174</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Fri, 13 Aug 2010 20:39:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=587#comment-3174</guid>
		<description>Hi Karthik,
Thanks for the post and replying to Adams post.  I am brand new at code, and trying to do this as you&#039;ve suggested.  

I deleted the specific images listed in the unordered list, (all the li lines), and replaced them with your snippet above as shown (where pimage is the folder name containing the jpegs:
&lt;?php
	&amp;files = glob( &#039;pimage/*&#039; );
	foreach( $files as $file )
		echo &#039;&#039;;
?&gt;

All I&#039;m getting is a grey block (my background is grey),  and these characters: 
&#039;; ?&gt; 
(These are the last characters of the php script.)

I assume I just have some beginner&#039;s syntax issue, and if you can see my problem, I&#039;d greatly appreciate it!

Thanks,
Patrick</description>
		<content:encoded><![CDATA[<p>Hi Karthik,<br />
Thanks for the post and replying to Adams post.  I am brand new at code, and trying to do this as you&#8217;ve suggested.  </p>
<p>I deleted the specific images listed in the unordered list, (all the li lines), and replaced them with your snippet above as shown (where pimage is the folder name containing the jpegs:<br />
&lt;?php<br />
	&amp;files = glob( &#039;pimage/*&#039; );<br />
	foreach( $files as $file )<br />
		echo &#039;&#8217;;<br />
?&gt;</p>
<p>All I&#8217;m getting is a grey block (my background is grey),  and these characters:<br />
&#8216;; ?&gt;<br />
(These are the last characters of the php script.)</p>
<p>I assume I just have some beginner&#8217;s syntax issue, and if you can see my problem, I&#8217;d greatly appreciate it!</p>
<p>Thanks,<br />
Patrick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karthik Viswanathan</title>
		<link>http://www.lateralcode.com/simple-slideshow/#comment-1147</link>
		<dc:creator>Karthik Viswanathan</dc:creator>
		<pubDate>Sun, 13 Jun 2010 17:46:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=587#comment-1147</guid>
		<description>Hey Adam,

Your problem can be solved with a simple PHP snippet:
&lt;pre&gt;&lt;?php
	$files = glob( &#039;path/to/directory/*&#039; );
	foreach( $files as $file )
		echo &#039;&lt;li&gt;&lt;img src=&quot;$file&quot; alt=&quot;&quot;&gt;&lt;/img&gt;&lt;/li&gt;&#039;;
?&gt;&lt;/pre&gt;

Just change the &#039;path/to/directory/&#039; to the correct path and make sure to keep the asterix at the end.

Place this code inside the unordered slideshow list and you should be good to go!

Karthik</description>
		<content:encoded><![CDATA[<p>Hey Adam,</p>
<p>Your problem can be solved with a simple PHP snippet:</p>
<pre>&lt;?php
	$files = glob( 'path/to/directory/*' );
	foreach( $files as $file )
		echo '&lt;li&gt;&lt;img src="$file" alt=""&gt;&lt;/img&gt;&lt;/li&gt;';
?&gt;</pre>
<p>Just change the &#8216;path/to/directory/&#8217; to the correct path and make sure to keep the asterix at the end.</p>
<p>Place this code inside the unordered slideshow list and you should be good to go!</p>
<p>Karthik</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.lateralcode.com/simple-slideshow/#comment-1146</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Sun, 13 Jun 2010 15:27:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=587#comment-1146</guid>
		<description>Hi, 

Many thanks, this is great!   I was hoping to be able to use it to slide show images from a folder that new images are being saved to, and have them automatically include into the running slide show.

I know what the iamges are going to be called (ie. 0001.JPG etc)  so tried entering the a list of the strings into the code, hopeing that it would ignore them until a correctly named image shows up.

Unfortunalty doing this just brings up a blank image (collaped border) for the alotted time. Is there a small change I can make so that it does not display an image if it is not there?

Or another way to allow it to simple cycle thorugh all images in a folder andno have to list them all?

Many thanks, 

Adam</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>Many thanks, this is great!   I was hoping to be able to use it to slide show images from a folder that new images are being saved to, and have them automatically include into the running slide show.</p>
<p>I know what the iamges are going to be called (ie. 0001.JPG etc)  so tried entering the a list of the strings into the code, hopeing that it would ignore them until a correctly named image shows up.</p>
<p>Unfortunalty doing this just brings up a blank image (collaped border) for the alotted time. Is there a small change I can make so that it does not display an image if it is not there?</p>
<p>Or another way to allow it to simple cycle thorugh all images in a folder andno have to list them all?</p>
<p>Many thanks, </p>
<p>Adam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jquery</title>
		<link>http://www.lateralcode.com/simple-slideshow/#comment-1107</link>
		<dc:creator>jquery</dc:creator>
		<pubDate>Mon, 24 May 2010 09:18:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=587#comment-1107</guid>
		<description>I found this simplest &lt;a href=&quot;http://www.ajaywebstudio.com&quot; rel=&quot;nofollow&quot;&gt;jquery slideshow&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>I found this simplest <a href="http://www.ajaywebstudio.com" rel="nofollow">jquery slideshow</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christian</title>
		<link>http://www.lateralcode.com/simple-slideshow/#comment-1025</link>
		<dc:creator>christian</dc:creator>
		<pubDate>Tue, 16 Mar 2010 23:36:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=587#comment-1025</guid>
		<description>believe that the conflict is between SwMenuFree and jQuery</description>
		<content:encoded><![CDATA[<p>believe that the conflict is between SwMenuFree and jQuery</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christian</title>
		<link>http://www.lateralcode.com/simple-slideshow/#comment-1024</link>
		<dc:creator>christian</dc:creator>
		<pubDate>Tue, 16 Mar 2010 23:31:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=587#comment-1024</guid>
		<description>hello, I installed your banner on the site of one of my client, www.forumjuliionbike.com but I have a small problem with IE 7 / 8. After the first fade the menu disappears! The menu is created with swmenu which is a particular form of Joomla!

I hope to get some info and solution.

THANKS</description>
		<content:encoded><![CDATA[<p>hello, I installed your banner on the site of one of my client, <a href="http://www.forumjuliionbike.com" rel="nofollow">http://www.forumjuliionbike.com</a> but I have a small problem with IE 7 / 8. After the first fade the menu disappears! The menu is created with swmenu which is a particular form of Joomla!</p>
<p>I hope to get some info and solution.</p>
<p>THANKS</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david v.</title>
		<link>http://www.lateralcode.com/simple-slideshow/#comment-1000</link>
		<dc:creator>david v.</dc:creator>
		<pubDate>Fri, 19 Feb 2010 05:10:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=587#comment-1000</guid>
		<description>Thank you,
It&#039;s very simple, and actualy works!!!
I have a problem though, I&#039;m shure you&#039;ll find this very basic but I can&#039;t find my way arround it.
It&#039;s the position of the slide show. I&#039;m designing with tables and the slideshow needs to take place in the midle of a text. I just can&#039;t get it in the right position. It stend over the text and I also can&#039;t get it to align on the left.
What should I do?
Cheers.</description>
		<content:encoded><![CDATA[<p>Thank you,<br />
It&#8217;s very simple, and actualy works!!!<br />
I have a problem though, I&#8217;m shure you&#8217;ll find this very basic but I can&#8217;t find my way arround it.<br />
It&#8217;s the position of the slide show. I&#8217;m designing with tables and the slideshow needs to take place in the midle of a text. I just can&#8217;t get it in the right position. It stend over the text and I also can&#8217;t get it to align on the left.<br />
What should I do?<br />
Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jer</title>
		<link>http://www.lateralcode.com/simple-slideshow/#comment-884</link>
		<dc:creator>Jer</dc:creator>
		<pubDate>Tue, 24 Nov 2009 22:09:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=587#comment-884</guid>
		<description>Do you have a list of compatible/tested browsers for this? Great stuff, thanks.</description>
		<content:encoded><![CDATA[<p>Do you have a list of compatible/tested browsers for this? Great stuff, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ralf</title>
		<link>http://www.lateralcode.com/simple-slideshow/#comment-752</link>
		<dc:creator>Ralf</dc:creator>
		<pubDate>Fri, 18 Sep 2009 14:09:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=587#comment-752</guid>
		<description>I spent hours looking for a SIMPLE slideshow. Your solution is exactly what I needed. Thank you!!!</description>
		<content:encoded><![CDATA[<p>I spent hours looking for a SIMPLE slideshow. Your solution is exactly what I needed. Thank you!!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
