<?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 for Nobox Media</title>
	<atom:link href="http://www.noboxmedia.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.noboxmedia.com</link>
	<description>The AJAX, DHTML &#038; JavaScript site</description>
	<pubDate>Wed, 20 Aug 2008 17:23:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>Comment on Girl I made in Photoshop by admin</title>
		<link>http://www.noboxmedia.com/girl-i-made-in-photoshop/#comment-3538</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 08 Aug 2008 05:57:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.noboxmedia.com/?p=649#comment-3538</guid>
		<description>@ Cedric - Thanks Cedric. I'd be happy to post the PSD, I'm not quite sire if it will be much help, hundreds of layers, none of them labeled. It might help you get a better idea of how the design was achieved... I'll put the psd up over the weekend some time.</description>
		<content:encoded><![CDATA[<p>@ Cedric - Thanks Cedric. I&#8217;d be happy to post the PSD, I&#8217;m not quite sire if it will be much help, hundreds of layers, none of them labeled. It might help you get a better idea of how the design was achieved&#8230; I&#8217;ll put the psd up over the weekend some time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Girl I made in Photoshop by cedric</title>
		<link>http://www.noboxmedia.com/girl-i-made-in-photoshop/#comment-3536</link>
		<dc:creator>cedric</dc:creator>
		<pubDate>Thu, 07 Aug 2008 11:36:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.noboxmedia.com/?p=649#comment-3536</guid>
		<description>this is fantastic....
can one recieve the pds?</description>
		<content:encoded><![CDATA[<p>this is fantastic&#8230;.<br />
can one recieve the pds?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top 100 AJAX form scripts for 2007 by admin</title>
		<link>http://www.noboxmedia.com/top-100-ajax-form-related-scripts-for-2007/#comment-3528</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 01 Aug 2008 06:24:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.noboxmedia.com/?p=49#comment-3528</guid>
		<description>@ NooBeek - Thanks a mill!!</description>
		<content:encoded><![CDATA[<p>@ NooBeek - Thanks a mill!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top 100 AJAX form scripts for 2007 by Noobeek</title>
		<link>http://www.noboxmedia.com/top-100-ajax-form-related-scripts-for-2007/#comment-3527</link>
		<dc:creator>Noobeek</dc:creator>
		<pubDate>Thu, 31 Jul 2008 14:13:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.noboxmedia.com/?p=49#comment-3527</guid>
		<description>Great list man, I added a link on http://gratuit.noobeek.com</description>
		<content:encoded><![CDATA[<p>Great list man, I added a link on <a href="http://gratuit.noobeek.com" rel="nofollow">http://gratuit.noobeek.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Girl I made in Photoshop by Colin Daniels</title>
		<link>http://www.noboxmedia.com/girl-i-made-in-photoshop/#comment-3525</link>
		<dc:creator>Colin Daniels</dc:creator>
		<pubDate>Wed, 23 Jul 2008 12:38:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.noboxmedia.com/?p=649#comment-3525</guid>
		<description>very cool!</description>
		<content:encoded><![CDATA[<p>very cool!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Massive AJAX Country/Area Drop-down List by JimJohn</title>
		<link>http://www.noboxmedia.com/massive-ajax-countryarea-drop-down-list/#comment-3263</link>
		<dc:creator>JimJohn</dc:creator>
		<pubDate>Wed, 16 Jul 2008 16:36:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.noboxmedia.com/20/massive-ajax-countryarea-drop-down-list/#comment-3263</guid>
		<description>got it to work, but not getting the state/area value. All I'm getting is numbers. and BTW:

for default to USA:

	function createStateList()
	{
		global $cdb;
		$sql="SELECT * FROM country_areas.list WHERE country='USA' ORDER BY area";
		$res=$cdb-&#62;Query($sql);
		while ($row=$cdb-&#62;GetRow($res))
		{
			echo "$row[area]";
		}
		return;
	}
Then, in your code:

$sql="SELECT * from country_areas.list group by country";
$rs=$cdb-&#62;Query($sql);
while ($row=$cdb-&#62;GetRow($rs))			
{
$selected=  ($row[country]=='USA')  ? 'selected' : '' ;
	?&#62;
	" &#62;
	
</description>
		<content:encoded><![CDATA[<p>got it to work, but not getting the state/area value. All I&#8217;m getting is numbers. and BTW:</p>
<p>for default to USA:</p>
<p>	function createStateList()<br />
	{<br />
		global $cdb;<br />
		$sql=&#8221;SELECT * FROM country_areas.list WHERE country=&#8217;USA&#8217; ORDER BY area&#8221;;<br />
		$res=$cdb-&gt;Query($sql);<br />
		while ($row=$cdb-&gt;GetRow($res))<br />
		{<br />
			echo &#8220;$row[area]&#8220;;<br />
		}<br />
		return;<br />
	}<br />
Then, in your code:</p>
<p>$sql=&#8221;SELECT * from country_areas.list group by country&#8221;;<br />
$rs=$cdb-&gt;Query($sql);<br />
while ($row=$cdb-&gt;GetRow($rs))<br />
{<br />
$selected=  ($row[country]==&#8217;USA&#8217;)  ? &#8217;selected&#8217; : &#8221; ;<br />
	?&gt;<br />
	&#8221; &gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Massive AJAX Country/Area Drop-down List by wolverine</title>
		<link>http://www.noboxmedia.com/massive-ajax-countryarea-drop-down-list/#comment-2788</link>
		<dc:creator>wolverine</dc:creator>
		<pubDate>Fri, 04 Jul 2008 07:15:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.noboxmedia.com/20/massive-ajax-countryarea-drop-down-list/#comment-2788</guid>
		<description>can you please explain how to implement this on blogger....

http://free-downloadz.blogspot.com</description>
		<content:encoded><![CDATA[<p>can you please explain how to implement this on blogger&#8230;.</p>
<p><a href="http://free-downloadz.blogspot.com" rel="nofollow">http://free-downloadz.blogspot.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top 100 AJAX form scripts for 2007 by gagpesiaCap</title>
		<link>http://www.noboxmedia.com/top-100-ajax-form-related-scripts-for-2007/#comment-2678</link>
		<dc:creator>gagpesiaCap</dc:creator>
		<pubDate>Thu, 03 Jul 2008 12:59:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.noboxmedia.com/?p=49#comment-2678</guid>
		<description>Hello 
What do your think about worm detector ?</description>
		<content:encoded><![CDATA[<p>Hello<br />
What do your think about worm detector ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I now work for the Avusa iLab by Paul</title>
		<link>http://www.noboxmedia.com/i-now-work-for-the-avusa-ilab/#comment-2493</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Wed, 02 Jul 2008 14:40:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.noboxmedia.com/30/i-now-work-for-the-avusa-ilab/#comment-2493</guid>
		<description>I bet you regret it now hey</description>
		<content:encoded><![CDATA[<p>I bet you regret it now hey</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top 100 AJAX form scripts for 2007 by Jad Mo</title>
		<link>http://www.noboxmedia.com/top-100-ajax-form-related-scripts-for-2007/#comment-2209</link>
		<dc:creator>Jad Mo</dc:creator>
		<pubDate>Mon, 16 Jun 2008 11:08:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.noboxmedia.com/?p=49#comment-2209</guid>
		<description>What a great website. FYI you are in my Favs. keep up the great Job!!</description>
		<content:encoded><![CDATA[<p>What a great website. FYI you are in my Favs. keep up the great Job!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
