<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DrPunchBlog &#187; PHP</title>
	<atom:link href="http://yo.drpunchman.com/category/code/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://yo.drpunchman.com</link>
	<description>Living the feaver dream.</description>
	<lastBuildDate>Thu, 02 Feb 2012 02:19:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Easy HTML formatted eMails with PHP</title>
		<link>http://yo.drpunchman.com/2011/04/25/easy-html-formatted-emails-with-php/</link>
		<comments>http://yo.drpunchman.com/2011/04/25/easy-html-formatted-emails-with-php/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 02:34:38 +0000</pubDate>
		<dc:creator>DrPunchman</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Boring]]></category>
		<category><![CDATA[eMails]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Unicorns]]></category>

		<guid isPermaLink="false">http://yo.drpunchman.com/?p=2048</guid>
		<description><![CDATA[This is a pretty straight forward bit-o-code, that takes an HTML file and emails it. I have a folder with 2 files in it: 1. the PHP MAILER 2. the HTML PAGE TO MAIL When I goto and view the PHP page, it finds the HTML page, loads it up, and mails it out. This [...]]]></description>
			<content:encoded><![CDATA[<p>This is a pretty straight forward bit-o-code, that takes an HTML file and emails it.</p>
<p>I have a folder with 2 files in it:<br />
1. the PHP MAILER<br />
2. the HTML PAGE TO MAIL</p>
<p>When I goto and view the PHP page, it finds the HTML page, loads it up, and mails it out.<br />
This way, I can pre-view the HTML by its self, and never have to break out each line again (as you do with the regular way of sending an php email).<br />
<span id="more-2048"></span></p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
/*
-----------------------------------------
	CONVERT HTML TO EMAIL
-----------------------------------------
*/

//   CHANGE THE BELOW VARIABLES TO YOUR NEEDS
$from = 'noreply@YourDomain.com';  // &lt;--- EMAIL SENT FROM
$to = 'someone@somewhere.com'; // &lt;--- EMAIL GOES TO

$subject = 'HTML Email Test'; // &lt;--- EMAIL SUBJECT
$file = &quot;test.html&quot;; // &lt;--- REPLACE with your HTML file name

// PREPARE THE BODY OF THE MESSAGE
// finds the current directory
$dir = getcwd();
// puts the directory and file together
$html = @fopen( $dir.&quot;/&quot;.$file, &quot;r&quot;);
if ($html) {
	$msg = &quot;Reading message... \r\n&quot;;
// read each line
    while (($buffer = fgets($html, 4096)) !== false)
    {
        $message.= &quot;&quot;.$buffer;
    }
    if (!feof($html))
    {
        $msg = &quot;Error reading the HTML page! \r\n&quot;;
    }
    fclose($html);
} else {
	$msg = &quot;Could not find file. \r\n&quot;;
}

// build out the email stuff
$headers = &quot;MIME-Version: 1.0 \r\n&quot;;
$headers .= &quot;Content-Type: text/html; charset=ISO-8859-1 \r\n&quot;;
$headers .= &quot;From: &quot; . $from . &quot; \r\n&quot;;
$headers .= &quot;Reply-To: &quot;. $from . &quot; \r\n&quot;;

// send the email
if (mail($to, $subject, $message, $headers)) {
  $msg .= 'Your message has been sent.';
} else {
  $msg .= '&lt;font color=&quot;#F00&quot;&gt;There was a problem sending the email.&lt;/font&gt;';
}
?&gt;
&lt;!--
I'd put a regular HTML page here to return the test results...
I don't like waiting for emails, I'd rather know ASAP.
--&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://yo.drpunchman.com/2011/04/25/easy-html-formatted-emails-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress + php = ZORK!</title>
		<link>http://yo.drpunchman.com/2010/03/18/wordpress-php-zork/</link>
		<comments>http://yo.drpunchman.com/2010/03/18/wordpress-php-zork/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 06:45:48 +0000</pubDate>
		<dc:creator>DrPunchman</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[There is a small mailbox here.]]></category>
		<category><![CDATA[Unicorn]]></category>
		<category><![CDATA[Zork]]></category>

		<guid isPermaLink="false">http://yo.drpunchman.com/?p=923</guid>
		<description><![CDATA[OK, so something is obviously wrong RIGHT with my date/time stamps on my blog. I&#8217;ve converted  to the Zork calendar. Why? Because Zork rocks! On the following page is my the quickie Zork date mod. I know this is supposed to be done in the themes pannel&#8230; but have you looked at this theme in [...]]]></description>
			<content:encoded><![CDATA[<p>OK, so something is obviously <span style="text-decoration: line-through;">wrong</span> <strong><span style="color: #008000;">RIGHT</span></strong> with my date/time stamps on my blog. I&#8217;ve converted  to the Zork calendar. Why? Because Zork rocks! On the following page is my the quickie Zork date mod. I know this is supposed to be done in the themes pannel&#8230; but have you looked at this theme in detail? It is put together with Voodoo and monkey parts. My code follows.</p>
<p><span id="more-923"></span></p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
/*
        This was updated for the new WordPress version &amp; new template!	

	add to index
	require_once( 'wp-content/themes/carrington-blog/functions/drPunchDate.php' );

	Converting the date to Zork dates
	edit &quot;wp_includes/general-template.php&quot;
	near line: 1424
		function the_time( $d = '' ) {
		echo  drDate( apply_filters('the_time', get_the_time( $d ), $d) );
		}

	Archive: near line 820
	translators: 1: month name, 2: 4-digit year
	//$text = sprintf(__('%1$s %2$d'), $wp_locale-&gt;get_month($arcresult-&gt;month), $arcresult-&gt;year);
	$text = dr_Month ( $arcresult-&gt;month ) .&quot; &quot;. $arcresult-&gt;year;

	plugin calendar near line 1943
	$output .= '&lt;li&gt;'. drDate( date(get_option('date_format'),mktime($day_count*24,0,0,date(&quot;m&quot;),date(&quot;d&quot;),date(&quot;Y&quot;))) ).'&lt;ul&gt;';

*/

function drDate( $the_date_arr )
{
	//  n w jS Y
	echo &quot;&lt;!-- DATE &quot;. $the_date_arr .&quot; --&gt;&quot;;

	$_drdate = explode( &quot; &quot;, $the_date_arr );

	// month
	$drMonth = dr_Month( $_drdate[ 0 ] );

	// day
	$drDay = dr_Day( $_drdate[ 1 ] );

	// date
	$drDate = $_drdate[ 2 ];

	// year
	$drYear = $_drdate[ 3 ];

	$myNewDate = $drDay .&quot; the &quot;. $drDate .&quot; of &quot;. $drMonth .&quot;, of the year &quot;. $drYear;

	return( $myNewDate );

}

function drDateJr( $the_date_arr )
{
	$_drdate = explode( &quot; &quot;, $the_date_arr );

	// month
	$drMonth = dr_Month( $_drdate[ 0 ] );

	// day
	$drDay = dr_Day( $_drdate[ 1 ] );

	// date
	$drDate = $_drdate[ 2 ];

	// year
	$drYear = $_drdate[ 3 ];

	$myNewDate = $drDate .&quot; of &quot;. $drMonth .&quot;, in &quot;. $drYear;

	return( $myNewDate );
}

// day --------------
function dr_Day( $ddd )
{

	switch( $ddd )
	{
		case( '0' ):
			$drDay = &quot;Sand Day&quot;;
			break;
		case( '1' ):
			$drDay = &quot;Mud Day&quot;;
			break;
		case( '2' ):
			$drDay = &quot;Grues Day&quot;;
			break;
		case( '3' ):
			$drDay = &quot;Wands Day&quot;;
			break;
		case( '4' ):
			$drDay = &quot;Birthday&quot;;
			break;
		case( '5' ):
			$drDay = &quot;Frob Day&quot;;
			break;
		case( '6' ):
			$drDay = &quot;Star Day&quot;;
			break;
	}

	return( $drDay );
}

// month --------------
function dr_MonthName ( $mmm, $boo = false )
{

	switch( substr( strtolower( $mmm ), 0, 3 ) )
	{
		case( 'jan' ):
			$drMonth = &quot;Estuary&quot;;
			break;
		case( 'feb' ):
			$drMonth = &quot;Fidooshiary&quot;;
			break;
		case( 'mar' ):
			$drMonth = &quot;Arch&quot;;
			break;
		case( 'apr' ):
			$drMonth = &quot;Oracle&quot;;
			break;
		case( 'may' ):
			$drMonth = &quot;Mage&quot;;
			break;
		case( 'jun' ):
			$drMonth = &quot;Jam&quot;;
			break;
		case( 'jul' ):
			$drMonth = &quot;Jelly&quot;;
			break;
		case( 'aug' ):
			$drMonth = &quot;Augur&quot;;
			break;
		case( 'sep' ):
			$drMonth = &quot;Suspendur&quot;;
			break;
		case( 'oct' ):
			$drMonth = &quot;Ottobur&quot;;
			break;
		case( 'nov' ):
			$drMonth = &quot;Mumberbur&quot;;
			break;
		case( 'dec' ):
			$drMonth = &quot;Dismembur&quot;;
			break;
	}	

	if( $boo ) $drMonth = substr( $drMonth, 0, 3 );

	return( $drMonth );
}

function dr_Month ( $mmm, $boo = false )
{

	switch( $mmm )
	{
		case( '1' ):
			$drMonth = &quot;Estuary&quot;;
			break;
		case( '2' ):
			$drMonth = &quot;Fidooshiary&quot;;
			break;
		case( '3' ):
			$drMonth = &quot;Arch&quot;;
			break;
		case( '4' ):
			$drMonth = &quot;Oracle&quot;;
			break;
		case( '5' ):
			$drMonth = &quot;Mage&quot;;
			break;
		case( '6' ):
			$drMonth = &quot;Jam&quot;;
			break;
		case( '7' ):
			$drMonth = &quot;Jelly&quot;;
			break;
		case( '8' ):
			$drMonth = &quot;Augur&quot;;
			break;
		case( '9' ):
			$drMonth = &quot;Suspendur&quot;;
			break;
		case( '10' ):
			$drMonth = &quot;Ottobur&quot;;
			break;
		case( '11' ):
			$drMonth = &quot;Mumberbur&quot;;
			break;
		case( '12' ):
			$drMonth = &quot;Dismembur&quot;;
			break;
	}	

	if( $boo ) $drMonth = substr( $drMonth, 0, 3 );

	return( $drMonth );
}

?&gt;
</pre>
<p>I want to point out 2 things:</p>
<ul>
<li>This is close but NOT a wholy faithful conversion to the Zork Calendar [ <a href="http://quendor.robinlionheart.com/calendar" target="_blank">read more here</a> ] (Not the most accurate Zork Calendar I have found, just the best one I found tonight)</li>
<li>Zork is awesome. You can play it here: http://thcnet.net/zork/</li>
</ul>
<h2>Fixes for new WordPress update!</h2>
<p>Fixes were made to the &#8220;general-template.php&#8221; file.</p>
<pre class="brush: php; title: ; notranslate">
/* translators: Calendar caption: 1: month name, 2: 4-digit year */
	$calendar_caption = _x('%1$s %2$s', 'calendar caption');
	$calendar_output = '&lt;table id=&quot;wp-calendar&quot; summary=&quot;' . esc_attr__('Calendar') . '&quot;&gt;
	&lt;caption&gt;' . sprintf($calendar_caption, dr_MonthName( $wp_locale-&gt;get_month($thismonth) ), date('Y', $unixmonth)) . '&lt;/caption&gt;
	&lt;thead&gt;
	&lt;tr&gt;';

	$myweek = array();

	for ( $wdcount=0; $wdcount&lt;=6; $wdcount++ ) {
		$myweek[] = $wp_locale-&gt;get_weekday(($wdcount+$week_begins)%7);
	}

	foreach ( $myweek as $wd ) {
		$day_name = (true == $initial) ? $wp_locale-&gt;get_weekday_initial($wd) : $wp_locale-&gt;get_weekday_abbrev($wd);
		$wd = esc_attr($wd);
		$calendar_output .= &quot;\n\t\t&lt;th scope=\&quot;col\&quot; title=\&quot;$wd\&quot;&gt;$day_name&lt;/th&gt;&quot;;
	}

	$calendar_output .= '
	&lt;/tr&gt;
	&lt;/thead&gt;

	&lt;tfoot&gt;
	&lt;tr&gt;';

	if ( $previous ) {
		$calendar_output .= &quot;\n\t\t&quot;.'&lt;td colspan=&quot;3&quot; id=&quot;prev&quot;&gt;&lt;a href=&quot;' . get_month_link($previous-&gt;year, $previous-&gt;month) . '&quot; title=&quot;' . sprintf(__('Probe %1$s %2$s'), dr_MonthName( $wp_locale-&gt;get_month($previous-&gt;month) ), date('Y', mktime(0, 0 , 0, $previous-&gt;month, 1, $previous-&gt;year))) . '&quot;&gt;&amp;laquo; ' . dr_MonthName( $wp_locale-&gt;get_month_abbrev($wp_locale-&gt;get_month($previous-&gt;month)), true ) . '&lt;/a&gt;&lt;/td&gt;';
	} else {
		$calendar_output .= &quot;\n\t\t&quot;.'&lt;td colspan=&quot;3&quot; id=&quot;prev&quot; class=&quot;pad&quot;&gt;&amp;nbsp;&lt;/td&gt;';
	}

	$calendar_output .= &quot;\n\t\t&quot;.'&lt;td class=&quot;pad&quot;&gt;&amp;nbsp;&lt;/td&gt;';

	if ( $next ) {
		$calendar_output .= &quot;\n\t\t&quot;.'&lt;td colspan=&quot;3&quot; id=&quot;next&quot;&gt;&lt;a href=&quot;' . get_month_link($next-&gt;year, $next-&gt;month) . '&quot; title=&quot;' . esc_attr( sprintf(__('Probe %1$s %2$s'), dr_MonthName( $wp_locale-&gt;get_month($next-&gt;month) ), date('Y', mktime(0, 0 , 0, $next-&gt;month, 1, $next-&gt;year))) ) . '&quot;&gt;' . dr_MonthName( $wp_locale-&gt;get_month_abbrev($wp_locale-&gt;get_month($next-&gt;month)), true) . ' &amp;raquo;&lt;/a&gt;&lt;/td&gt;';
	} else {
		$calendar_output .= &quot;\n\t\t&quot;.'&lt;td colspan=&quot;3&quot; id=&quot;next&quot; class=&quot;pad&quot;&gt;&amp;nbsp;&lt;/td&gt;';
	}

	$calendar_output .= '
	&lt;/tr&gt;
	&lt;/tfoot&gt;

	&lt;tbody&gt;
	&lt;tr&gt;';
</pre>
]]></content:encoded>
			<wfw:commentRss>http://yo.drpunchman.com/2010/03/18/wordpress-php-zork/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Social Hub</title>
		<link>http://yo.drpunchman.com/2010/02/15/social-hub/</link>
		<comments>http://yo.drpunchman.com/2010/02/15/social-hub/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 01:22:39 +0000</pubDate>
		<dc:creator>DrPunchman</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[as2]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[js]]></category>

		<guid isPermaLink="false">http://yo.drpunchman.com/?p=804</guid>
		<description><![CDATA[Just finished the TurboTax Social Hub. (Well ok, I finished a while ago, but it just launched&#8230;). It is a portal into the crazy social aspect of TurboTax&#8217;s marketing. It might seem silly at first, but once you think about it, it&#8217;s actually kinda brilliant. Its (Taxes) something everyone needs to deal with, and we [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_808" class="wp-caption aligncenter" style="width: 310px"><a href="http://yo.drpunchman.com/wp-content/uploads/2010/02/socialHub_04.jpg"><img class="size-medium wp-image-808" title="socialHub_04" src="http://yo.drpunchman.com/wp-content/uploads/2010/02/socialHub_04-300x233.jpg" alt="" width="300" height="233" /></a><p class="wp-caption-text">EXPLORE: Grock our mad fine peeps, yo!</p></div>
<p>Just finished the <a title="TurboTax Mojo" href="http://turbotaxmojo.com" target="_blank">TurboTax Social Hub.</a> (Well ok, I finished a while ago, but it just launched&#8230;).<br />
It is a portal into the crazy social aspect of TurboTax&#8217;s marketing. It might seem silly at first, but once you think about it, it&#8217;s actually kinda brilliant. Its (Taxes) something everyone needs to deal with, and we all fear it on some primal level, and Intuit is using our emotional bond with the event to turn it into a social thing. Kinda turning it on it&#8217;s ear. It&#8217;s no wonder this stuff becomes so popular.</p>
<p><span id="more-804"></span></p>
<div id="attachment_807" class="wp-caption aligncenter" style="width: 310px"><a href="http://yo.drpunchman.com/wp-content/uploads/2010/02/socialHub_03.jpg"><img class="size-medium wp-image-807" title="socialHub_03" src="http://yo.drpunchman.com/wp-content/uploads/2010/02/socialHub_03-300x233.jpg" alt="" width="300" height="233" /></a><p class="wp-caption-text">LEARN: Dork out with TurboTax! </p></div>
<div id="attachment_806" class="wp-caption aligncenter" style="width: 310px"><a href="http://yo.drpunchman.com/wp-content/uploads/2010/02/socialHub_02.jpg"><img class="size-medium wp-image-806" title="socialHub_02" src="http://yo.drpunchman.com/wp-content/uploads/2010/02/socialHub_02-300x233.jpg" alt="" width="300" height="233" /></a><p class="wp-caption-text">CONNECT: Chances are that you know someone you know who knows TurboTax!</p></div>
<div id="attachment_805" class="wp-caption aligncenter" style="width: 310px"><a href="http://yo.drpunchman.com/wp-content/uploads/2010/02/socialHub_01.jpg"><img class="size-medium wp-image-805" title="socialHub_01" src="http://yo.drpunchman.com/wp-content/uploads/2010/02/socialHub_01-300x233.jpg" alt="" width="300" height="233" /></a><p class="wp-caption-text">Take the Red Pill or the Blue Pill? Ok, so there are three Blue Pills. But you can&#39;t say I didn&#39;t give you options.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://yo.drpunchman.com/2010/02/15/social-hub/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="http://yo.drpunchman.com/wp-content/uploads/2010/02/socialHub_01-150x150.jpg" length="8467" type="image/jpg" />	</item>
		<item>
		<title>AS3 + PHP = FlashVars</title>
		<link>http://yo.drpunchman.com/2010/02/12/as3-php-flashvars/</link>
		<comments>http://yo.drpunchman.com/2010/02/12/as3-php-flashvars/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 19:21:45 +0000</pubDate>
		<dc:creator>DrPunchman</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flashvars]]></category>
		<category><![CDATA[loaderInfo()]]></category>
		<category><![CDATA[pathing]]></category>

		<guid isPermaLink="false">http://yo.drpunchman.com/?p=812</guid>
		<description><![CDATA[Lesson learned on a previous project: USE PHP TO SET FLASHVARS OF DOMAIN URL! Web security is tightening up, and flash web apps want to be more universal, this means my little widget might be on 300 different sites but needs to reference the correct files on each site. The key to this is setting [...]]]></description>
			<content:encoded><![CDATA[<p>Lesson learned on a previous project: USE PHP TO SET FLASHVARS OF DOMAIN URL! Web security is tightening up, and flash web apps want to be more universal, this means my little widget might be on 300 different sites but needs to reference the correct files on each site. The key to this is setting the site&#8217;s URL as a FlashVar and letting flash actually know where it is.</p>
<p>The PHP</p>
<pre class="brush: php; title: ; notranslate">
// http://www.php.net/manual/en/reserved.variables.server.php
$rootwww = 'http://'.$_SERVER['SERVER_NAME'].'/';
</pre>
<p>Now the AS3</p>
<pre class="brush: as3; title: ; notranslate">
import flash.display.LoaderInfo;
// call the flash var as a property of an object
var _rootwww:String = getFlashVars().rootwww;
if( _rootwww == null ) _rootwww = &quot;http://www.yourSiteHere.com&quot;;
// get the flash var object
private function getFlashVars():Object
{
	var obj:Object = new Object();
	try {
		obj = Object( LoaderInfo( this.loaderInfo ).parameters );
	} catch( e:Error ) {
		trace( e.message );
		obj.rootwww = null;
	}
	return obj;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://yo.drpunchman.com/2010/02/12/as3-php-flashvars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP: Proxy that shit!</title>
		<link>http://yo.drpunchman.com/2010/01/09/php-proxy-that-shit/</link>
		<comments>http://yo.drpunchman.com/2010/01/09/php-proxy-that-shit/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 00:22:59 +0000</pubDate>
		<dc:creator>DrPunchman</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[as2]]></category>
		<category><![CDATA[PROXY]]></category>

		<guid isPermaLink="false">http://yo.drpunchman.com/?p=744</guid>
		<description><![CDATA[I have a new best friend in town and his name is Proxy. Basically this is a quick and easy work around for flash&#8217;s STUPID security issues. You simply send your link (to a file on a different server) to the proxy(on your server) and flash thinks that those files are actually local files! and [...]]]></description>
			<content:encoded><![CDATA[<p>I have a new best friend in town and his name is Proxy.</p>
<p>Basically this is a quick and easy work around for flash&#8217;s STUPID security issues.<br />
You simply send your link (to a file on a different server) to the proxy(on your server) and flash thinks that those files are actually local files!</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php

$url = 'http://';
if (isset($_GET['url']) &amp;&amp; $_GET['url'] != '')
{
    $url .= $_GET['url'];
}

$mimeType = 'application/xml';

$response = file_get_contents($url);

if ($mimeType != &quot;&quot;)
{
    header(&quot;Content-Type: &quot;.$mimeType);
}
echo $response;

?&gt;
</pre>
<p>and in ActionScript 2 you would call it like:</p>
<pre class="brush: as3; title: ; notranslate">
_xml.load( PROXY_URL + &quot;?url=&quot; + RSS_URL );
</pre>
]]></content:encoded>
			<wfw:commentRss>http://yo.drpunchman.com/2010/01/09/php-proxy-that-shit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

