<?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 on: Secure PHP Form Mailer Script</title>
	<atom:link href="http://www.dagondesign.com/articles/secure-php-form-mailer-script/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/</link>
	<description>WordPress Plugins, PHP Scripts, Tools, and Tutorials</description>
	<lastBuildDate>Sat, 13 Mar 2010 14:48:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: jolie</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-507847</link>
		<dc:creator>jolie</dc:creator>
		<pubDate>Sat, 13 Mar 2010 10:20:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-507847</guid>
		<description>A few people mentioned problems with the date chooser field type. I tested this out thoroughly, and it seems to be functioning fine. Just be sure (if you are using the PHP version of the script) that you are including the required javascript file.

As always, I am not able to implement every single requested feature, but I try to focus on known issues, while implementing things that many can benefit from.</description>
		<content:encoded><![CDATA[<p>A few people mentioned problems with the date chooser field type. I tested this out thoroughly, and it seems to be functioning fine. Just be sure (if you are using the PHP version of the script) that you are including the required javascript file.</p>
<p>As always, I am not able to implement every single requested feature, but I try to focus on known issues, while implementing things that many can benefit from.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JULIAN YORKE</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-507834</link>
		<dc:creator>JULIAN YORKE</dc:creator>
		<pubDate>Fri, 12 Mar 2010 17:04:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-507834</guid>
		<description>I have managed to get my recaptcha image to show now but am having trouble to get input in my new fields accepted.  Please could you advise.

Many thanks

Julian</description>
		<content:encoded><![CDATA[<p>I have managed to get my recaptcha image to show now but am having trouble to get input in my new fields accepted.  Please could you advise.</p>
<p>Many thanks</p>
<p>Julian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: poperechny</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-507671</link>
		<dc:creator>poperechny</dc:creator>
		<pubDate>Wed, 10 Mar 2010 04:32:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-507671</guid>
		<description>Thanks!Great article!</description>
		<content:encoded><![CDATA[<p>Thanks!Great article!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yemek tarifleri</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-507658</link>
		<dc:creator>yemek tarifleri</dc:creator>
		<pubDate>Wed, 10 Mar 2010 02:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-507658</guid>
		<description>thanks super</description>
		<content:encoded><![CDATA[<p>thanks super</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gillian</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-507626</link>
		<dc:creator>Gillian</dc:creator>
		<pubDate>Tue, 09 Mar 2010 20:44:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-507626</guid>
		<description>If I want to send the data inputed into this form to a database where would I put the  file so that I can send the data when the user submits the form?</description>
		<content:encoded><![CDATA[<p>If I want to send the data inputed into this form to a database where would I put the  file so that I can send the data when the user submits the form?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Suzy</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-507621</link>
		<dc:creator>Suzy</dc:creator>
		<pubDate>Tue, 09 Mar 2010 17:36:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-507621</guid>
		<description>Regarding my previous comment: 1896, DaveP&#039;s comment: 1926 and Eric&#039;s Comment: 1912:
I did finally get the .csv files to work when not in standalone mode with version 5.8 (not with earlier versions). The instructions state &quot;With the PHP version of this script, the path to the data file is relative to the location of the script. Be sure to give this file write access.&quot;

Even if the script and the .txt or .csv file are in the same folder (ie: dd-formmailer), just using &lt;code&gt;$save_path = &#039;form-messages.csv&#039;;&lt;/code&gt; did not work. The relative path that finally worked for me was:
&lt;code&gt;$save_path = &#039;./dd-formmailer/form-messages.csv&#039;;&lt;/code&gt;

I am not sure if this worked because the .php file that was including the dd-formmailer.php script was outside of the dd-formmailer folder, but anyone who is trying to include the form in their own .php page should try using a path in the same format as above.

As for write access to the .csv or .txt file, the lowest file permissions I could set and still have the file written to by the script was 722.

I hope this helps anyone who is still pondering over this function.</description>
		<content:encoded><![CDATA[<p>Regarding my previous comment: 1896, DaveP&#8217;s comment: 1926 and Eric&#8217;s Comment: 1912:<br />
I did finally get the .csv files to work when not in standalone mode with version 5.8 (not with earlier versions). The instructions state &#8220;With the PHP version of this script, the path to the data file is relative to the location of the script. Be sure to give this file write access.&#8221;</p>
<p>Even if the script and the .txt or .csv file are in the same folder (ie: dd-formmailer), just using <code>$save_path = 'form-messages.csv';</code> did not work. The relative path that finally worked for me was:<br />
<code>$save_path = './dd-formmailer/form-messages.csv';</code></p>
<p>I am not sure if this worked because the .php file that was including the dd-formmailer.php script was outside of the dd-formmailer folder, but anyone who is trying to include the form in their own .php page should try using a path in the same format as above.</p>
<p>As for write access to the .csv or .txt file, the lowest file permissions I could set and still have the file written to by the script was 722.</p>
<p>I hope this helps anyone who is still pondering over this function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yakiv</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-507590</link>
		<dc:creator>Yakiv</dc:creator>
		<pubDate>Mon, 08 Mar 2010 18:30:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-507590</guid>
		<description>Has anyone used an alternative captcha - called HN CAPTCHA - with this script?  I absolutely love this contact form.  It is one of the best on the internet.  The captcha is quite good, but I have wished I could use HN CAPTCHA, which I use throughout my sites.  Here&#039;s a direct link to the project, in case anyone does not know about it:

http://hn273.users.phpclasses.org/browse/package/1569.html

Hope maybe someone can help with this.  I did see the code for HII and thought about trying to pick away at it to get it work with HN CAPTCHA, but if someone has already done it and can graciously contribute the code, I would be grateful!  Thanks!!</description>
		<content:encoded><![CDATA[<p>Has anyone used an alternative captcha &#8211; called HN CAPTCHA &#8211; with this script?  I absolutely love this contact form.  It is one of the best on the internet.  The captcha is quite good, but I have wished I could use HN CAPTCHA, which I use throughout my sites.  Here&#8217;s a direct link to the project, in case anyone does not know about it:</p>
<p><a href="http://hn273.users.phpclasses.org/browse/package/1569.html" rel="nofollow">http://hn273.users.phpclasses.org/browse/package/1569.html</a></p>
<p>Hope maybe someone can help with this.  I did see the code for HII and thought about trying to pick away at it to get it work with HN CAPTCHA, but if someone has already done it and can graciously contribute the code, I would be grateful!  Thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JULIAN YORKE</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-507443</link>
		<dc:creator>JULIAN YORKE</dc:creator>
		<pubDate>Sat, 06 Mar 2010 15:33:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-507443</guid>
		<description>I am having problems getting the Recaptcha image verification object to appear on my form page, having followed your troubleshooting advice.  I have entered the keys that I got from signing up for this.  Please could you advise.

Otherwise I am very impressed with this program.

Many thanks

Julian Yorke</description>
		<content:encoded><![CDATA[<p>I am having problems getting the Recaptcha image verification object to appear on my form page, having followed your troubleshooting advice.  I have entered the keys that I got from signing up for this.  Please could you advise.</p>
<p>Otherwise I am very impressed with this program.</p>
<p>Many thanks</p>
<p>Julian Yorke</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Article Directory Steve</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-507423</link>
		<dc:creator>Article Directory Steve</dc:creator>
		<pubDate>Sat, 06 Mar 2010 09:18:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-507423</guid>
		<description>Great article , been looking for this type of detail</description>
		<content:encoded><![CDATA[<p>Great article , been looking for this type of detail</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: saninder</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-507346</link>
		<dc:creator>saninder</dc:creator>
		<pubDate>Thu, 04 Mar 2010 14:13:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-507346</guid>
		<description>hello sr ki haal hai</description>
		<content:encoded><![CDATA[<p>hello sr ki haal hai</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sims</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-507338</link>
		<dc:creator>sims</dc:creator>
		<pubDate>Thu, 04 Mar 2010 02:19:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-507338</guid>
		<description>Oh, they paginate after they all load... almost pointless...</description>
		<content:encoded><![CDATA[<p>Oh, they paginate after they all load&#8230; almost pointless&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sims</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-507337</link>
		<dc:creator>sims</dc:creator>
		<pubDate>Thu, 04 Mar 2010 02:18:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-507337</guid>
		<description>It might be a nice idea to paginate the comments. This page takes forever to load. When it does load, it takes up so much memory and some text can&#039;t even be displayed.</description>
		<content:encoded><![CDATA[<p>It might be a nice idea to paginate the comments. This page takes forever to load. When it does load, it takes up so much memory and some text can&#8217;t even be displayed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-507320</link>
		<dc:creator>John</dc:creator>
		<pubDate>Wed, 03 Mar 2010 18:41:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-507320</guid>
		<description>Script works great. Thanks. However, the reply-to email in the emails I receive from the form displays my default server email address (e.g username@box#.servername.com). I would like to have the reply address display the email the users enter in the form field. Whats the best way to make this happen?

THANKS!</description>
		<content:encoded><![CDATA[<p>Script works great. Thanks. However, the reply-to email in the emails I receive from the form displays my default server email address (e.g username@box#.servername.com). I would like to have the reply address display the email the users enter in the form field. Whats the best way to make this happen?</p>
<p>THANKS!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: steelwidow</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-506921</link>
		<dc:creator>steelwidow</dc:creator>
		<pubDate>Fri, 26 Feb 2010 04:34:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-506921</guid>
		<description>First of all thank you for the awesome script! It was the only one I found that would work with yahoo hosting. Secondly, I wanted to use this script on a different page, without making it standalone so I put it in an iframe and of course it didnt line up correctly, however it did send email. So then I spent the rest of the day trying to edit the css. NO GO! So I had to find a workaround for this problem. Literally half the form wasn&#039;t showing up in the iframe for some reason. For those of you who just want to pull this php form into a regular html page so you don&#039;t have to hassle with editing the script or the css here is the workaround for it. YEAH! I hope this helps save you hours!!!
&lt;code&gt;&lt;div style=&quot;
   clip: rect(0,381,381,0); // right-clip equal to div width plus total border width
                            // bottom-clip equal to div height plus total border height
   position:absolute;       // used for positioning and may or may not be required
   background: #FFF;        // background color of div may or may not be seen
   height: 500;             // height of window (div) that contains the iframe content
   width: 377;              // width of window (div) that contains the iframe content
   left: 125;                // absolute position of window (div) from the left edge of browser
   top: 100;                 // absolute position of window (div) from the top edge of browser
&quot;&gt;

&lt;iframe 
   src=&quot;your_full_url_where_you_uploaded_dd-formmailer.php&quot; // location of external resource 
   width=&quot;600&quot;              // width of iframe should match the width of containing div
   height=&quot;600&quot;             // height of iframe should match the height of containing div
   marginwidth=&quot;0&quot;          // width of iframe margin
   marginheight=&quot;0&quot;         // height of iframe margin   
   frameborder=&quot;no&quot;         // frame border preference
   scrolling=&quot;no&quot;          // instructs iframe to scroll overflow content
   style=&quot;
      border-style: solid;  // border style
      border-color: #333;   // border color
      border-width: 2px;    // border width
      background: #FFF;     // background color
&quot;&gt;
&lt;/iframe&gt;

&lt;/div&gt;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>First of all thank you for the awesome script! It was the only one I found that would work with yahoo hosting. Secondly, I wanted to use this script on a different page, without making it standalone so I put it in an iframe and of course it didnt line up correctly, however it did send email. So then I spent the rest of the day trying to edit the css. NO GO! So I had to find a workaround for this problem. Literally half the form wasn&#8217;t showing up in the iframe for some reason. For those of you who just want to pull this php form into a regular html page so you don&#8217;t have to hassle with editing the script or the css here is the workaround for it. YEAH! I hope this helps save you hours!!!<br />
<pre><code>&lt;div style="
   clip: rect(0,381,381,0); // right-clip equal to div width plus total border width
                            // bottom-clip equal to div height plus total border height
   position:absolute;       // used for positioning and may or may not be required
   background: #FFF;        // background color of div may or may not be seen
   height: 500;             // height of window (div) that contains the iframe content
   width: 377;              // width of window (div) that contains the iframe content
   left: 125;                // absolute position of window (div) from the left edge of browser
   top: 100;                 // absolute position of window (div) from the top edge of browser
"&gt;

&lt;iframe 
   src="your_full_url_where_you_uploaded_dd-formmailer.php" // location of external resource 
   width="600"              // width of iframe should match the width of containing div
   height="600"             // height of iframe should match the height of containing div
   marginwidth="0"          // width of iframe margin
   marginheight="0"         // height of iframe margin   
   frameborder="no"         // frame border preference
   scrolling="no"          // instructs iframe to scroll overflow content
   style="
      border-style: solid;  // border style
      border-color: #333;   // border color
      border-width: 2px;    // border width
      background: #FFF;     // background color
"&gt;
&lt;/iframe&gt;

&lt;/div&gt;</code></pre></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-506791</link>
		<dc:creator>John</dc:creator>
		<pubDate>Wed, 24 Feb 2010 22:34:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-506791</guid>
		<description>Any way to have form elements side-by-side? 

Thanks</description>
		<content:encoded><![CDATA[<p>Any way to have form elements side-by-side? </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neil H</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-506630</link>
		<dc:creator>Neil H</dc:creator>
		<pubDate>Mon, 22 Feb 2010 16:17:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-506630</guid>
		<description>In FORM STRUCTURE I would like to use a fully formated, multi line message for fm_message but I can&#039;t seem to get default= to work other than a short default message. Is it possible to pull a formated message from a file or do you of any other work around? Thanks

type=textarea&#124;class=fmtextarea&#124;label=Message&#124;fieldname=fm_message&#124;max=5000&#124;rows=35&#124;req=true&#124;default=Regular message goes here.</description>
		<content:encoded><![CDATA[<p>In FORM STRUCTURE I would like to use a fully formated, multi line message for fm_message but I can&#8217;t seem to get default= to work other than a short default message. Is it possible to pull a formated message from a file or do you of any other work around? Thanks</p>
<p>type=textarea|class=fmtextarea|label=Message|fieldname=fm_message|max=5000|rows=35|req=true|default=Regular message goes here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luc</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-506463</link>
		<dc:creator>Luc</dc:creator>
		<pubDate>Fri, 19 Feb 2010 16:11:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-506463</guid>
		<description>Hi there. In the instructions it&#039;s specified that each words that can be seen in the form have been translated in the language files.

I see that nobody pointed that out yet (how come ? ) but the labels, like for example &quot;Name&quot; in the form is not translated at all, nor are the other ones. the only one translated is the &quot;Send&quot; button value.

I added to my language files 
&lt;code&gt;
define(&#039;DDFM_NAME&#039;, &#039;Name&#039;);
&lt;/code&gt;
 and want to use it instead of &quot;Name&quot; in the following code:

&lt;code&gt;
type=text&#124;class=fmtext&#124;label=&#039;DDFM_NAME&#039;&#124;fieldname=fm_name&#124;max=100&#124;req=true
&lt;/code&gt;

I tried numerous options and it doesn&#039;t work.

Anyone can help ?

Thank you</description>
		<content:encoded><![CDATA[<p>Hi there. In the instructions it&#8217;s specified that each words that can be seen in the form have been translated in the language files.</p>
<p>I see that nobody pointed that out yet (how come ? ) but the labels, like for example &#8220;Name&#8221; in the form is not translated at all, nor are the other ones. the only one translated is the &#8220;Send&#8221; button value.</p>
<p>I added to my language files<br />
<pre><code>
define('DDFM_NAME', 'Name');
</code></pre><br />
 and want to use it instead of &#8220;Name&#8221; in the following code:</p>
<p><pre><code>
type=text|class=fmtext|label='DDFM_NAME'|fieldname=fm_name|max=100|req=true
</code></pre></p>
<p>I tried numerous options and it doesn&#8217;t work.</p>
<p>Anyone can help ?</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laltea</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-506436</link>
		<dc:creator>Laltea</dc:creator>
		<pubDate>Fri, 19 Feb 2010 10:04:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-506436</guid>
		<description>hello
really good script
however is it possible to make users type(Input by themselves) the recipients email address instead of giving them choices from already fixed lines of emails to choose from a list</description>
		<content:encoded><![CDATA[<p>hello<br />
really good script<br />
however is it possible to make users type(Input by themselves) the recipients email address instead of giving them choices from already fixed lines of emails to choose from a list</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jozsef</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-506204</link>
		<dc:creator>Jozsef</dc:creator>
		<pubDate>Tue, 16 Feb 2010 13:19:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-506204</guid>
		<description>With $standalone = FALSE; is there any way to do any kind of changes with Error page I&#039;m getting if I don&#039;t fill all required fields? Or, is there a way of having custom Error page for this thing?
Thanks.</description>
		<content:encoded><![CDATA[<p>With $standalone = FALSE; is there any way to do any kind of changes with Error page I&#8217;m getting if I don&#8217;t fill all required fields? Or, is there a way of having custom Error page for this thing?<br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DaveP</title>
		<link>http://www.dagondesign.com/articles/secure-php-form-mailer-script/comment-page-39/#comment-505894</link>
		<dc:creator>DaveP</dc:creator>
		<pubDate>Tue, 09 Feb 2010 17:18:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/?p=35#comment-505894</guid>
		<description>I cannot get any data written to a data.txt file in the same folder as I have the scripts, full write permissions exist. This has been raised before but I could not see a solution for it -Does anyone have one please?

// SAVE DATA TO FILE
// If set to TRUE, the form input will be saved in a delimited file

$save_to_file = TRUE;

// STILL SEND EMAIL
// If saving the data to a file, still have the script send the email?

$save_email = TRUE;

// DATA PATH
// The file that will be written to - make sure it has write access

$save_path = &#039;data.txt&#039;;

// DELIMITER
// Fields will be separated by this character. If this character is found in
// the actual data, it will be removed.

$save_delimiter = &#039;&#124;&#039;;</description>
		<content:encoded><![CDATA[<p>I cannot get any data written to a data.txt file in the same folder as I have the scripts, full write permissions exist. This has been raised before but I could not see a solution for it -Does anyone have one please?</p>
<p>// SAVE DATA TO FILE<br />
// If set to TRUE, the form input will be saved in a delimited file</p>
<p>$save_to_file = TRUE;</p>
<p>// STILL SEND EMAIL<br />
// If saving the data to a file, still have the script send the email?</p>
<p>$save_email = TRUE;</p>
<p>// DATA PATH<br />
// The file that will be written to &#8211; make sure it has write access</p>
<p>$save_path = &#8216;data.txt&#8217;;</p>
<p>// DELIMITER<br />
// Fields will be separated by this character. If this character is found in<br />
// the actual data, it will be removed.</p>
<p>$save_delimiter = &#8216;|&#8217;;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
