<?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"
	>
<channel>
	<title>Comments on: JibberBook - an AJAX guestbook</title>
	<atom:link href="http://www.chromasynthetic.com/blog/archive/48/feed" rel="self" type="application/rss+xml" />
	<link>http://www.chromasynthetic.com/blog/archive/48</link>
	<description>a blog about web design and development</description>
	<pubDate>Thu, 28 Aug 2008 02:14:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: Chris</title>
		<link>http://www.chromasynthetic.com/blog/archive/48#comment-9270</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 16 Oct 2007 02:11:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromasynthetic.com/blog/archive/48#comment-9270</guid>
		<description>It would be helpful to describe what happens, like what kind of errors you are getting, if any.

You may want to try JibberBook v2.0 and see if that fixes the problem.</description>
		<content:encoded><![CDATA[<p>It would be helpful to describe what happens, like what kind of errors you are getting, if any.</p>
<p>You may want to try JibberBook v2.0 and see if that fixes the problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: EpyZooD</title>
		<link>http://www.chromasynthetic.com/blog/archive/48#comment-9268</link>
		<dc:creator>EpyZooD</dc:creator>
		<pubDate>Mon, 15 Oct 2007 17:50:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromasynthetic.com/blog/archive/48#comment-9268</guid>
		<description>Hi!

This guestbook is really cool, but after 28-30 messages the users cannot add comments. Why? No file rename, server side is ok. In localhost is the same.,

Can anyone help?

EpyZooD</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>This guestbook is really cool, but after 28-30 messages the users cannot add comments. Why? No file rename, server side is ok. In localhost is the same.,</p>
<p>Can anyone help?</p>
<p>EpyZooD</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spot an error</title>
		<link>http://www.chromasynthetic.com/blog/archive/48#comment-9238</link>
		<dc:creator>Spot an error</dc:creator>
		<pubDate>Mon, 08 Oct 2007 13:24:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromasynthetic.com/blog/archive/48#comment-9238</guid>
		<description>IE shows Line:24 Char:3 Error: Syntax Error Code:0. It seems like after submiting the form to action/add.php, the error throws out. Did you ppl get the same result?</description>
		<content:encoded><![CDATA[<p>IE shows Line:24 Char:3 Error: Syntax Error Code:0. It seems like after submiting the form to action/add.php, the error throws out. Did you ppl get the same result?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.chromasynthetic.com/blog/archive/48#comment-9233</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 04 Oct 2007 14:12:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromasynthetic.com/blog/archive/48#comment-9233</guid>
		<description>Sure, all you have to do is change the loop structure in index.php so it starts with the last one and finishes with the first like so (untested):
&lt;pre lang="php"&gt;
for ($i = count($xml-&gt;message) - 1; $i &gt;= 0; $i--) {
  $data = array('name'=&gt;$xml-&gt;message[$i]-&gt;name,'website'=&gt;$xml-&gt;message[$i]-&gt;website,'comment'=&gt;$xml-&gt;message[$i]-&gt;comment,'date'=&gt;$xml-&gt;message[$i]-&gt;date,'id'=&gt;$xml-&gt;message[$i]['mID']);
  transformXML($data);
}
&lt;/pre&gt;

The new version will show the latest entries first so you could just wait for that otherwise. It'll be out soon, and it's got a bunch more features.</description>
		<content:encoded><![CDATA[<p>Sure, all you have to do is change the loop structure in index.php so it starts with the last one and finishes with the first like so (untested):</p>

<div class="wp_syntax"><div class="code"><pre class="php"><span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #000033;">$i</span> <span style="color: #339933;">=</span> <span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000033;">$xml</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">message</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span> <span style="color: #000033;">$i</span> <span style="color: #339933;">&gt;=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000033;">$i</span><span style="color: #339933;">--</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000033;">$data</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'name'</span><span style="color: #339933;">=&gt;</span><span style="color: #000033;">$xml</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">message</span><span style="color: #009900;">&#91;</span><span style="color: #000033;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">name</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'website'</span><span style="color: #339933;">=&gt;</span><span style="color: #000033;">$xml</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">message</span><span style="color: #009900;">&#91;</span><span style="color: #000033;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">website</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'comment'</span><span style="color: #339933;">=&gt;</span><span style="color: #000033;">$xml</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">message</span><span style="color: #009900;">&#91;</span><span style="color: #000033;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">comment</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'date'</span><span style="color: #339933;">=&gt;</span><span style="color: #000033;">$xml</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">message</span><span style="color: #009900;">&#91;</span><span style="color: #000033;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">date</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'id'</span><span style="color: #339933;">=&gt;</span><span style="color: #000033;">$xml</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">message</span><span style="color: #009900;">&#91;</span><span style="color: #000033;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'mID'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  transformXML<span style="color: #009900;">&#40;</span><span style="color: #000033;">$data</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>The new version will show the latest entries first so you could just wait for that otherwise. It&#8217;ll be out soon, and it&#8217;s got a bunch more features.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://www.chromasynthetic.com/blog/archive/48#comment-9232</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Thu, 04 Oct 2007 11:55:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromasynthetic.com/blog/archive/48#comment-9232</guid>
		<description>very cool guestbook. one question: is it possible to show the latest entry on top of the comments list? what do i have to change or add in the files. thanks a lot for response.</description>
		<content:encoded><![CDATA[<p>very cool guestbook. one question: is it possible to show the latest entry on top of the comments list? what do i have to change or add in the files. thanks a lot for response.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.chromasynthetic.com/blog/archive/48#comment-9231</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 03 Oct 2007 23:43:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromasynthetic.com/blog/archive/48#comment-9231</guid>
		<description>I'm working on that at this very moment! It should be done in a couple weeks at the most, but I'm not setting a definite release date. Thanks for checking it out.</description>
		<content:encoded><![CDATA[<p>I&#8217;m working on that at this very moment! It should be done in a couple weeks at the most, but I&#8217;m not setting a definite release date. Thanks for checking it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juan Manuel</title>
		<link>http://www.chromasynthetic.com/blog/archive/48#comment-9230</link>
		<dc:creator>Juan Manuel</dc:creator>
		<pubDate>Wed, 03 Oct 2007 23:32:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromasynthetic.com/blog/archive/48#comment-9230</guid>
		<description>is cool but doesn't have a admin area</description>
		<content:encoded><![CDATA[<p>is cool but doesn&#8217;t have a admin area</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ergin Tekinbaş</title>
		<link>http://www.chromasynthetic.com/blog/archive/48#comment-9229</link>
		<dc:creator>Ergin Tekinbaş</dc:creator>
		<pubDate>Tue, 02 Oct 2007 21:51:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromasynthetic.com/blog/archive/48#comment-9229</guid>
		<description>Well done! This is one of the best guestbook script in the world! Keep them comin'</description>
		<content:encoded><![CDATA[<p>Well done! This is one of the best guestbook script in the world! Keep them comin&#8217;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
