<?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>Tutorials, Scripts, Technology and Interview Tips &#187; PHP</title>
	<atom:link href="http://mistonline.in/wp/technology/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://mistonline.in/wp</link>
	<description>The One Stop Reference For Web Developers</description>
	<lastBuildDate>Tue, 24 Jan 2012 13:59:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Count distinct records or values and display it using mysql and php</title>
		<link>http://mistonline.in/wp/count-distinct-records-or-values-and-display-it-using-mysql-and-php/</link>
		<comments>http://mistonline.in/wp/count-distinct-records-or-values-and-display-it-using-mysql-and-php/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 08:42:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1612</guid>
		<description><![CDATA[This tutorial shows you how to count unique records with mysql and display it using php. Very simple to understand. This line count(&#60;COLUMN_NAME&#62;) AS count_me simply means that the count value is assigned to variable count_me and we can ECHO it using $row['count_me'] Complete code is displayed below. Here i am using connect.php which contains [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/count-distinct-records-or-values-and-display-it-using-mysql-and-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sort MYSQL data according to the date in php or mysql itself</title>
		<link>http://mistonline.in/wp/sort-mysql-d/</link>
		<comments>http://mistonline.in/wp/sort-mysql-d/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 14:15:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1605</guid>
		<description><![CDATA[Sort the data from mysql using date. If you have a field inside mysql for DATE and you need to sort the data accordingly in ascending or descending order you can use this UNIX_TIMESTAMP(FIELD NAME). You can even update your existing SQL TYPE to DATE but it may sometimes results in loss of date if [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/sort-mysql-d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirect webpage using php</title>
		<link>http://mistonline.in/wp/redirect-webpage-using-php/</link>
		<comments>http://mistonline.in/wp/redirect-webpage-using-php/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 15:46:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1584</guid>
		<description><![CDATA[Redirect webpage after a specific time delay using php.We have html code for redirecting one webpage to another.But here we have php for doing the same. We can even give a delay of our choice inside the code. Grab the code here. &#60; ?php header(&#34;refresh:3;url=redirected.htm&#34;);?&#62; Put the above code in any webpage you need the [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/redirect-webpage-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Read text file reverse using php</title>
		<link>http://mistonline.in/wp/read-text-file-reverse-using-php/</link>
		<comments>http://mistonline.in/wp/read-text-file-reverse-using-php/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 08:57:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1578</guid>
		<description><![CDATA[Read text file reverse using php $file = file('text.txt'); $read_rev = array_reverse($file); $count=0; foreach ($read_rev as $dis_line) { print_r($dis_line); echo &#34;&#60;br /&#62;&#34;; } Demo Incoming search terms: contoh code javascript get data from listbox (1) php чтение файл reverse (1)]]></description>
		<wfw:commentRss>http://mistonline.in/wp/read-text-file-reverse-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Send mail to admin or website owner when ever the logs show 404 or 500 or 401 or 400 error codes</title>
		<link>http://mistonline.in/wp/send-mail-to-admin-or-website-owner-when-ever-the-logs-show-404-or-500-or-401-or-400-error-codes/</link>
		<comments>http://mistonline.in/wp/send-mail-to-admin-or-website-owner-when-ever-the-logs-show-404-or-500-or-401-or-400-error-codes/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 08:45:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1572</guid>
		<description><![CDATA[Send an mail to admin or website owner when ever the logs show 404 or file not found error.This script can be used as a cron and is run on everyday basis to get all the details in your email.You can modify the code URI accordingly to get different error message details such as 404, [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/send-mail-to-admin-or-website-owner-when-ever-the-logs-show-404-or-500-or-401-or-400-error-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Date in title bar using php</title>
		<link>http://mistonline.in/wp/date-in-title-bar-using-php/</link>
		<comments>http://mistonline.in/wp/date-in-title-bar-using-php/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 07:12:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1569</guid>
		<description><![CDATA[This is a simple script that appends date inside the html title tag. &#60;title&#62;Today is &#60; ?php print date(&#34;l&#34;); print(&#34;, &#34;); print date(&#34;d/M/y&#34;);?&#62;&#60;/title&#62; Incoming search terms: date in title bar using php (2) jewish clothing pictures admin php intitle:datalife engine (2) suicide girls pin up admin php intitle:datalife engine (2) php database tutorial using combobox [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/date-in-title-bar-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setup a smtp server on your localsystem or server using hmailserver and send email</title>
		<link>http://mistonline.in/wp/setup-a-smtp-server-on-your-localsystem-or-server-using-hmailserver-and-send-email/</link>
		<comments>http://mistonline.in/wp/setup-a-smtp-server-on-your-localsystem-or-server-using-hmailserver-and-send-email/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 17:24:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1565</guid>
		<description><![CDATA[Setup a smtp server on the system, if you are running on windows use hmailserver and configure it and send any number of mails. DOWNLOAD HMAIL SERVER HERE &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;a)Select the default settings that popup under installation window { DONT MODIFY ANYTHING JUST PRESS NEXT AND INSTALL IT } &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;b)Once installed it will ask for a [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/setup-a-smtp-server-on-your-localsystem-or-server-using-hmailserver-and-send-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Replace a string in a text or php file and save it using php</title>
		<link>http://mistonline.in/wp/replace-a-string-in-a-text-or-php-file-and-save-it-using-php/</link>
		<comments>http://mistonline.in/wp/replace-a-string-in-a-text-or-php-file-and-save-it-using-php/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 16:14:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1562</guid>
		<description><![CDATA[Replace a string in a text or php file and save it using php. A very simple example.Here test_file.php is the php file i am using to replace ip address inside that. //read the entire string $str=implode(&#34;&#34;,file('../test_file.php')); $fp=fopen('../test_file.php','w'); //replace something in the file string, here i am replacing an IP address from 127.0.0.1 to 127.1.9.9 [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/replace-a-string-in-a-text-or-php-file-and-save-it-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get the MAC address of the system using php</title>
		<link>http://mistonline.in/wp/get-the-mac-address-of-the-system-using-php/</link>
		<comments>http://mistonline.in/wp/get-the-mac-address-of-the-system-using-php/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 15:50:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1558</guid>
		<description><![CDATA[Get the MAC address of the system using php. ob_start(); system('ipconfig /all'); $mycom=ob_get_contents(); // Capture the output into a variable ob_clean(); $findme = &#34;Physical&#34;; $pos = strpos($mycom, $findme); $macp=substr($mycom,($pos+36),17); echo &#34;The mac id of this system is :&#34;.$macp; Incoming search terms: php mac address (2) javascript mac address (2) php get mac address (2) $pmac [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/get-the-mac-address-of-the-system-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get the public IP address of the system not the default ip using php</title>
		<link>http://mistonline.in/wp/get-the-public-ip-address-of-the-system-not-the-default-ip-using-php/</link>
		<comments>http://mistonline.in/wp/get-the-public-ip-address-of-the-system-not-the-default-ip-using-php/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 15:46:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1554</guid>
		<description><![CDATA[Get the ip address of the system [usually assigned by ISP], the public ip address using php. ob_start(); system('ipconfig /all'); $mycom=ob_get_contents(); // Capture the output into a variable ob_clean(); $findme = &#34;IP Address&#34;; $pos = strpos($mycom, $findme); $ip=substr($mycom,($pos+36),17); echo &#34;The IP address of this system is :&#34;.$ip; Here we are using Output buffer. CLICK HERE [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/get-the-public-ip-address-of-the-system-not-the-default-ip-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Output buffering using ob_start in php</title>
		<link>http://mistonline.in/wp/output-buffering-using-ob_start-in-php/</link>
		<comments>http://mistonline.in/wp/output-buffering-using-ob_start-in-php/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 04:23:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1537</guid>
		<description><![CDATA[Output buffering using ob_start in php and saving it to a variable, this is a very good feature available in php mainly when we want to output and html data or php data ob_start(); //Turn on output buffering ?&#62; Get this link &#60;a href=&#34;http://www.mistonline.in&#34;&#62;output buffer&#60;/a&#62; &#60;div class=&#34;style&#34;&#62;Rest of html&#60;/div&#62; &#60;?php $get_html = ob_get_clean(); //copy current [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/output-buffering-using-ob_start-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get browser language using php</title>
		<link>http://mistonline.in/wp/get-browser-language-using-php/</link>
		<comments>http://mistonline.in/wp/get-browser-language-using-php/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 04:16:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1533</guid>
		<description><![CDATA[In php you can get the language of your visitor, this is very helpful if you have many versions of your website for different languages. $language = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2); echo &#34;The browser language is &#34;.$language; Incoming search terms: inurl php\mail:id= (1)]]></description>
		<wfw:commentRss>http://mistonline.in/wp/get-browser-language-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find files inside a directory that starts with a specific string using php</title>
		<link>http://mistonline.in/wp/find-files-inside-a-directory-that-starts-with-a-specific-string-using-php/</link>
		<comments>http://mistonline.in/wp/find-files-inside-a-directory-that-starts-with-a-specific-string-using-php/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 18:29:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1502</guid>
		<description><![CDATA[Find files inside a directory that starts with a specific string using php.This script will search for files that starts with a string [Whatever you give] inside the query string. For instance if the below script is saved inside a file say search_files.php then the script will work if you provide www..com/search_files.php?name=access_log $dir = &#34;logs&#34;; [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/find-files-inside-a-directory-that-starts-with-a-specific-string-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find the string and then the line number using php from text file</title>
		<link>http://mistonline.in/wp/find-the-string-and-then-the-line-number-using-php-from-text-file/</link>
		<comments>http://mistonline.in/wp/find-the-string-and-then-the-line-number-using-php-from-text-file/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 18:22:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1499</guid>
		<description><![CDATA[Find the string and then the line number using php from text file or a text data base. In this we are searching a string named alan inside one of our log files. $searchString = 'alan'; $URL = &#34;logs/logs.txt_2011-08-10&#34;; $data = file_get_contents($URL); $data = explode(&#34;\n&#34;, $data); for ($line = 0; $line &#60; count($data); $line++) { [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/find-the-string-and-then-the-line-number-using-php-from-text-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display text file line by line and delete certain lines using php</title>
		<link>http://mistonline.in/wp/display-text-file-line-by-line-and-delete-certain-lines-using-php/</link>
		<comments>http://mistonline.in/wp/display-text-file-line-by-line-and-delete-certain-lines-using-php/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 19:31:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1495</guid>
		<description><![CDATA[Display text file or text data base line by line and delete certain lines using php. Each line of the text file is read and a DELETE link is added along with it.Grab the script here. NOTE:-My text file name is mail_list.txt Create a file with name del.php and add the below code. Save it [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/display-text-file-line-by-line-and-delete-certain-lines-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>View edit and save text file database using php</title>
		<link>http://mistonline.in/wp/view-edit-and-save-text-file-database-using-php/</link>
		<comments>http://mistonline.in/wp/view-edit-and-save-text-file-database-using-php/#comments</comments>
		<pubDate>Sun, 17 Jul 2011 04:22:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1471</guid>
		<description><![CDATA[This tutorial will help you in viewing editing and saving a text file database using si php. //your file name here $fn = &#34;My_File.txt&#34;; if (isset($_POST['content'])) { $content = stripslashes($_POST['content']); $fp = fopen($fn,&#34;w&#34;) or die (&#34;Error opening file in write mode!&#34;); fputs($fp,$content); fclose($fp) or die (&#34;Error closing file!&#34;); header('Location: ANY_FILE_TO_BE_REDIRECTED.php'); } ?&#62; &#60;form action=&#34;&#60;?php echo [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/view-edit-and-save-text-file-database-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zip or Archive a directory using php</title>
		<link>http://mistonline.in/wp/zip-or-archive-a-directory-using-php/</link>
		<comments>http://mistonline.in/wp/zip-or-archive-a-directory-using-php/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 16:57:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1467</guid>
		<description><![CDATA[This is a simple script that archive or zip the current directory using php. Just copy paste the code and run on your host or path where you need the archive to be created. You can even pass the path as an argument using GET or POST method. ini_set(&#34;max_execution_time&#34;, 1000); $zip = new ZipArchive(); $file_name='my-archive.zip'; [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/zip-or-archive-a-directory-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating An Image Using PHP</title>
		<link>http://mistonline.in/wp/creating-an-image-using-php/</link>
		<comments>http://mistonline.in/wp/creating-an-image-using-php/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 08:34:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[images]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/creating-an-image-using-php/</guid>
		<description><![CDATA[Just Copy And Paste The Code Below you can create .JPG,.GIF,.PNG Any thing of you choice Enjoy Wink &#60; ?php create_image(); print &#34;&#34;; function create_image(){ $im = @imagecreate(200, 200) or die(&#34;Cannot Initialize new GD image stream&#34;); $background_color = imagecolorallocate($im, 105, 255, 0); // yellow imagepng($im,&#34;image1.jpg&#34;); imagedestroy($im); } ?&#62; Incoming search terms: using inurl:/entry php?id= (7) [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/creating-an-image-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Example Of Database Connection Using PEAR In PHP</title>
		<link>http://mistonline.in/wp/simple-example-of-database-connection-using-pear-in-php/</link>
		<comments>http://mistonline.in/wp/simple-example-of-database-connection-using-pear-in-php/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 08:33:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[pear]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/?p=1447</guid>
		<description><![CDATA[This is a very simple example that uses a Database connection using pear which is a application repository in PHP. Create a Database of your choice and run these sql queries in the database. CR'EATE TABLE mydb_test ( mydb_test_id mediumint(9) NOT NULL auto_increment, mydb_test_stamp bigint(20), mydb_test_text varchar(50), PRIMARY KEY (mydb_test_id) ); INS'ERT INTO mydb_test VALUES [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/simple-example-of-database-connection-using-pear-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding size of a directory using php</title>
		<link>http://mistonline.in/wp/finding-size-of-a-directory-using-php/</link>
		<comments>http://mistonline.in/wp/finding-size-of-a-directory-using-php/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 08:33:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mistonline.in/wp/finding-size-of-a-directory-using-php/</guid>
		<description><![CDATA[Easy to find the size of a directory using php script Just copy and paste the code to a file &#60;somename&#62;.php on your server or localhost $totalsize=0; function show_dir($dir, $pos=1){ global $totalsize; if($pos == 1) echo &#34;&#60;hr /&#62;&#60;pre&#62;&#34;; $handle = @opendir($dir); while ($file = @readdir ($handle)){ if (eregi(&#34;^\.{1,2}$&#34;,$file)) continue; if(is_dir($dir.$file)){ echo &#34;&#124;- &#34;.$pos.&#34;s &#60;b&#62;$file&#60;/b&#62;\n&#34;; show_dir(&#34;$dir.$file/&#34;, [...]]]></description>
		<wfw:commentRss>http://mistonline.in/wp/finding-size-of-a-directory-using-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

