<?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 for Acts Media</title>
	<atom:link href="http://blog.actsmedia.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.actsmedia.com</link>
	<description>Acts Media specializes in Wed Design, Web Development, and Flash/Flex Authoring</description>
	<lastBuildDate>Thu, 28 Jan 2010 12:26:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on traderdomains.com is a scam by The Naming Dude</title>
		<link>http://blog.actsmedia.com/2009/08/traderdomains-com-is-a-scam/comment-page-1/#comment-510</link>
		<dc:creator>The Naming Dude</dc:creator>
		<pubDate>Thu, 28 Jan 2010 12:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.actsmedia.com/?p=78#comment-510</guid>
		<description>Yep, got one of these too. In fact I got a series of them over a period of a month. Nearly fell for it, but fortunately just checked Godaddy myself to see if they owned it. Nope, they didn&#039;t. So I registered it for $9.99. Total scam company. I blogged about it here: http://the-name-i-wanted-was-already-taken-so-i-used-a-lot-of-dashes.com/the-traderdomains-net-scam-avoid-this-rip-off-company/</description>
		<content:encoded><![CDATA[<p>Yep, got one of these too. In fact I got a series of them over a period of a month. Nearly fell for it, but fortunately just checked Godaddy myself to see if they owned it. Nope, they didn&#8217;t. So I registered it for $9.99. Total scam company. I blogged about it here: <a href="http://the-name-i-wanted-was-already-taken-so-i-used-a-lot-of-dashes.com/the-traderdomains-net-scam-avoid-this-rip-off-company/" rel="nofollow">http://the-name-i-wanted-was-already-taken-so-i-used-a-lot-of-dashes.com/the-traderdomains-net-scam-avoid-this-rip-off-company/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP ForEach Last Item, Last Loop, Last Iteration by Scott</title>
		<link>http://blog.actsmedia.com/2009/09/php-foreach-last-item-last-loop/comment-page-1/#comment-392</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Thu, 21 Jan 2010 04:48:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.actsmedia.com/?p=140#comment-392</guid>
		<description>Thanks very much for this code. It didn&#039;t work for me.
I have the following array:
&lt;code&gt;
[field_author] =&gt; Array
        (
            [0] =&gt; Array
                (
                    [value] =&gt; 529
                    [view] =&gt; Barak Obama
                )

            [1] =&gt; Array
                (
                    [value] =&gt; 530
                    [view] =&gt; Dmitry Medvedev
                )

            [2] =&gt; Array
                (
                    [value] =&gt; 531
                    [view] =&gt; Gordon Brown
                )

        )
&lt;/code&gt;

...and modified your code as follows:
&lt;code&gt;
$last_item = end($node-&gt;field_author);
$last_item = each($node-&gt;field_author);
reset($node-&gt;field_author);
foreach($node-&gt;field_author as $key =&gt; $value){
	// code executed during standard iteration
	print ($value[&#039;view&#039;].&#039;, &#039;);
	if($node-&gt;field_author == $last_item[&#039;value&#039;] &amp;&amp; $key == $last_item[&#039;key&#039;]){
		// code executed on the 
                // last iteration of the foreach loop
     	print $value[&#039;view&#039;];				
	}
}
&lt;/code&gt;

I get the following result:
Barak Obama, Dmitry Medvedev, Gordon Brown, 

I don&#039;t want the last comma 
Any suggestions?
Thanks again,
Scott

PS. What I&#039;d really like to be able to do is account for 1, 2, 3, 4 or more author cases, each having their own link. For example:
Barak Obama
Barak Obama and Dmitry Medvedev
Barak Obama, Dmitry Medvedev and Gordon Brown
Barak Obama, Dmitry Medvedev, Nicolas Sarkozy and Gordon Brown</description>
		<content:encoded><![CDATA[<p>Thanks very much for this code. It didn&#8217;t work for me.<br />
I have the following array:<br />
<code><br />
[field_author] =&gt; Array<br />
        (<br />
            [0] =&gt; Array<br />
                (<br />
                    [value] =&gt; 529<br />
                    [view] =&gt; Barak Obama<br />
                )</p>
<p>            [1] =&gt; Array<br />
                (<br />
                    [value] =&gt; 530<br />
                    [view] =&gt; Dmitry Medvedev<br />
                )</p>
<p>            [2] =&gt; Array<br />
                (<br />
                    [value] =&gt; 531<br />
                    [view] =&gt; Gordon Brown<br />
                )</p>
<p>        )<br />
</code></p>
<p>&#8230;and modified your code as follows:<br />
<code><br />
$last_item = end($node-&gt;field_author);<br />
$last_item = each($node-&gt;field_author);<br />
reset($node-&gt;field_author);<br />
foreach($node-&gt;field_author as $key =&gt; $value){<br />
	// code executed during standard iteration<br />
	print ($value['view'].', ');<br />
	if($node-&gt;field_author == $last_item['value'] &amp;&amp; $key == $last_item['key']){<br />
		// code executed on the<br />
                // last iteration of the foreach loop<br />
     	print $value['view'];<br />
	}<br />
}<br />
</code></p>
<p>I get the following result:<br />
Barak Obama, Dmitry Medvedev, Gordon Brown, </p>
<p>I don&#8217;t want the last comma<br />
Any suggestions?<br />
Thanks again,<br />
Scott</p>
<p>PS. What I&#8217;d really like to be able to do is account for 1, 2, 3, 4 or more author cases, each having their own link. For example:<br />
Barak Obama<br />
Barak Obama and Dmitry Medvedev<br />
Barak Obama, Dmitry Medvedev and Gordon Brown<br />
Barak Obama, Dmitry Medvedev, Nicolas Sarkozy and Gordon Brown</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on traderdomains.com is a scam by m</title>
		<link>http://blog.actsmedia.com/2009/08/traderdomains-com-is-a-scam/comment-page-1/#comment-356</link>
		<dc:creator>m</dc:creator>
		<pubDate>Sun, 10 Jan 2010 13:17:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.actsmedia.com/?p=78#comment-356</guid>
		<description>Hi, is happen to me too, i checked on misterdomain.eu and registered dominion with them the domain offered from  http://trader-domains.com at 6 Euro instead of 49.00 USD...</description>
		<content:encoded><![CDATA[<p>Hi, is happen to me too, i checked on misterdomain.eu and registered dominion with them the domain offered from  <a href="http://trader-domains.com" rel="nofollow">http://trader-domains.com</a> at 6 Euro instead of 49.00 USD&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MooTools target in IE by bento</title>
		<link>http://blog.actsmedia.com/2009/08/mootools-target-in-ie/comment-page-1/#comment-355</link>
		<dc:creator>bento</dc:creator>
		<pubDate>Sun, 10 Jan 2010 08:39:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.actsmedia.com/?p=47#comment-355</guid>
		<description>Thank-you thank-you thank-you!! This helped perfectly to solve my problem of IE not reading the target property. You have helped to save me a lot of work. :-)</description>
		<content:encoded><![CDATA[<p>Thank-you thank-you thank-you!! This helped perfectly to solve my problem of IE not reading the target property. You have helped to save me a lot of work. <img src='http://blog.actsmedia.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on traderdomains.com is a scam by Carlo</title>
		<link>http://blog.actsmedia.com/2009/08/traderdomains-com-is-a-scam/comment-page-1/#comment-314</link>
		<dc:creator>Carlo</dc:creator>
		<pubDate>Thu, 24 Dec 2009 07:34:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.actsmedia.com/?p=78#comment-314</guid>
		<description>At first I was excited that my domain name was available as .com (I was disappointed a year ago when I had to settle for .net)...I rushed over to their website, started to fill in the reg. details, then had the rational thought to Google them and found this post.

I was again disappointed to read it was a scam, until I realized that the domain was actually available which I signed up for 9.95 per year! So, thanks heaps, you&#039;ve saved me a good chunk of coin. Scumbags...but I should be thankful for their alert!</description>
		<content:encoded><![CDATA[<p>At first I was excited that my domain name was available as .com (I was disappointed a year ago when I had to settle for .net)&#8230;I rushed over to their website, started to fill in the reg. details, then had the rational thought to Google them and found this post.</p>
<p>I was again disappointed to read it was a scam, until I realized that the domain was actually available which I signed up for 9.95 per year! So, thanks heaps, you&#8217;ve saved me a good chunk of coin. Scumbags&#8230;but I should be thankful for their alert!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on traderdomains.com is a scam by Webber</title>
		<link>http://blog.actsmedia.com/2009/08/traderdomains-com-is-a-scam/comment-page-1/#comment-256</link>
		<dc:creator>Webber</dc:creator>
		<pubDate>Fri, 11 Dec 2009 12:53:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.actsmedia.com/?p=78#comment-256</guid>
		<description>Same story, they notified me of a domain which was available that I bought from godaddy for $8. Should I send them a commission?

They are using the site jora.us</description>
		<content:encoded><![CDATA[<p>Same story, they notified me of a domain which was available that I bought from godaddy for $8. Should I send them a commission?</p>
<p>They are using the site jora.us</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on traderdomains.com is a scam by ACB</title>
		<link>http://blog.actsmedia.com/2009/08/traderdomains-com-is-a-scam/comment-page-1/#comment-177</link>
		<dc:creator>ACB</dc:creator>
		<pubDate>Fri, 13 Nov 2009 19:48:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.actsmedia.com/?p=78#comment-177</guid>
		<description>I&#039;m exactly in the same case as you, Mark. When I received the email I checked the domain and it was not available. So I believed them (yes, i am stupid). Luckily, it&#039;s only been 20$.

If I now do a whois no the domain, I get this info: &quot;Contact: info@registrymanagement.com&quot;. This seems to be the company that actually made the register process. If I don&#039;t get news from traderdomains (I doubt I do), I will contact registrymanagement.com.

I will report my progresses.</description>
		<content:encoded><![CDATA[<p>I&#8217;m exactly in the same case as you, Mark. When I received the email I checked the domain and it was not available. So I believed them (yes, i am stupid). Luckily, it&#8217;s only been 20$.</p>
<p>If I now do a whois no the domain, I get this info: &#8220;Contact: <a href="mailto:info@registrymanagement.com">info@registrymanagement.com</a>&#8220;. This seems to be the company that actually made the register process. If I don&#8217;t get news from traderdomains (I doubt I do), I will contact registrymanagement.com.</p>
<p>I will report my progresses.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on traderdomains.com is a scam by Mark Watson</title>
		<link>http://blog.actsmedia.com/2009/08/traderdomains-com-is-a-scam/comment-page-1/#comment-175</link>
		<dc:creator>Mark Watson</dc:creator>
		<pubDate>Thu, 12 Nov 2009 21:47:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.actsmedia.com/?p=78#comment-175</guid>
		<description>Pending- I got an email from them yesterday morning about one of my old domains that my ex-business partner let expire. It was the SECOND email I had received from them about this domain. I checked and the domain was NOT available through godaddy.com or bluehost.com. I paid the 30.00 because it is a domain I have owned for 10 years, and I want it back. NOW it is well past the 24 hours in which they promised me my transfer info. I did a whois and they HAVE the domain. Now I am just waiting to see if they hand it over or not.

IF THEY DO, I WILL THANK THEM. Like I said, it was NOT available for $10, believe me, I checked. They secured it before I paid them. I just hope they deliver it to me.</description>
		<content:encoded><![CDATA[<p>Pending- I got an email from them yesterday morning about one of my old domains that my ex-business partner let expire. It was the SECOND email I had received from them about this domain. I checked and the domain was NOT available through godaddy.com or bluehost.com. I paid the 30.00 because it is a domain I have owned for 10 years, and I want it back. NOW it is well past the 24 hours in which they promised me my transfer info. I did a whois and they HAVE the domain. Now I am just waiting to see if they hand it over or not.</p>
<p>IF THEY DO, I WILL THANK THEM. Like I said, it was NOT available for $10, believe me, I checked. They secured it before I paid them. I just hope they deliver it to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Joomla Component Global Models by Corey</title>
		<link>http://blog.actsmedia.com/2009/08/joomla-component-global-models/comment-page-1/#comment-158</link>
		<dc:creator>Corey</dc:creator>
		<pubDate>Tue, 03 Nov 2009 23:22:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.actsmedia.com/?p=95#comment-158</guid>
		<description>Thanks for this, truly. I&#039;m trying to develop a custom component and I will definitely use this.</description>
		<content:encoded><![CDATA[<p>Thanks for this, truly. I&#8217;m trying to develop a custom component and I will definitely use this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP ForEach Last Item, Last Loop, Last Iteration by Corey</title>
		<link>http://blog.actsmedia.com/2009/09/php-foreach-last-item-last-loop/comment-page-1/#comment-157</link>
		<dc:creator>Corey</dc:creator>
		<pubDate>Tue, 03 Nov 2009 23:21:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.actsmedia.com/?p=140#comment-157</guid>
		<description>If you&#039;re worried about runtime, the worst case scenario for this is O(n). A hash table could be useful if you&#039;re expecting lots of values.</description>
		<content:encoded><![CDATA[<p>If you&#8217;re worried about runtime, the worst case scenario for this is O(n). A hash table could be useful if you&#8217;re expecting lots of values.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
