<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
 <generator>http://textpattern.com/</generator>
 <title>Textpattern Tips – Personal greeting in comments form</title>
 <description>Personal greeting in comments form - comments</description>
 <link>https://textpattern.tips/personal-greeting-in-comments-form</link>
 <atom:link href="https://textpattern.tips/personal-greeting-in-comments-form?f=comment-feed" rel="self" type="application/rss+xml" />
 <pubDate>Sun, 09 Sep 12 14:44:38 +0000</pubDate>

 <item>
     <title>Comment on Personal greeting in comments form by Jon-Michael Deldin</title>
     <link><a href="https://textpattern.tips/personal-greeting-in-comments-form#c000474" id="c000474">1</a></link>
     <guid><a href="https://textpattern.tips/personal-greeting-in-comments-form#c000474" id="c000474">1</a></guid>
     <pubDate>Sun, 19 Apr 09 16:00:53 +0000</pubDate>
     <description><![CDATA[<p>To prevent &#8220;Welcome back&#8221; from appearing for those who haven&#8217;t commented, use the following:</p><pre><code>&lt;txp:php&gt;
$u = pcs('name');
if (!empty($u))
    echo 'Welcome back, ', pcs('name');
&lt;/txp:php&gt;
</code></pre>]]></description>
     <content:encoded><![CDATA[<p>To prevent &#8220;Welcome back&#8221; from appearing for those who haven&#8217;t commented, use the following:</p><pre><code>&lt;txp:php&gt;
$u = pcs('name');
if (!empty($u))
    echo 'Welcome back, ', pcs('name');
&lt;/txp:php&gt;
</code></pre>]]></content:encoded>
     <dc:creator><a rel="nofollow" href="http://jmdeldin.com">Jon-Michael Deldin</a></dc:creator>
 
</item>
<item>
     <title>Comment on Personal greeting in comments form by Sander</title>
     <link><a href="https://textpattern.tips/personal-greeting-in-comments-form#c001141" id="c001141">1</a></link>
     <guid><a href="https://textpattern.tips/personal-greeting-in-comments-form#c001141" id="c001141">1</a></guid>
     <pubDate>Sun, 09 Sep 12 12:04:21 +0000</pubDate>
     <description><![CDATA[<p>And if I want to replace any other text with this &#8211; is there any &#8220;else&#8221; option?</p>]]></description>
     <content:encoded><![CDATA[<p>And if I want to replace any other text with this &#8211; is there any &#8220;else&#8221; option?</p>]]></content:encoded>
     <dc:creator>Sander</dc:creator>
 
</item>
<item>
     <title>Comment on Personal greeting in comments form by etc</title>
     <link><a href="https://textpattern.tips/personal-greeting-in-comments-form#c001142" id="c001142">1</a></link>
     <guid><a href="https://textpattern.tips/personal-greeting-in-comments-form#c001142" id="c001142">1</a></guid>
     <pubDate>Sun, 09 Sep 12 14:34:18 +0000</pubDate>
     <description><![CDATA[<p>You should at least pass <code>pcs('name')</code> through <code>htmlspecialchars</code>. If in doubt, it all can be done with <a href="http://www.iut-fbleau.fr/projet/etc/index.php?id=3" rel="nofollow">etc_query</a> plugin:</p><pre><code>&lt;txp:etc_query globals="_COOKIE,_POST" data="{?name}"&gt;
  Welcome back, {?}.
&lt;txp:else /&gt;
  Other text.
&lt;/txp:etc_query&gt;
</code></pre>]]></description>
     <content:encoded><![CDATA[<p>You should at least pass <code>pcs('name')</code> through <code>htmlspecialchars</code>. If in doubt, it all can be done with <a href="http://www.iut-fbleau.fr/projet/etc/index.php?id=3" rel="nofollow">etc_query</a> plugin:</p><pre><code>&lt;txp:etc_query globals="_COOKIE,_POST" data="{?name}"&gt;
  Welcome back, {?}.
&lt;txp:else /&gt;
  Other text.
&lt;/txp:etc_query&gt;
</code></pre>]]></content:encoded>
     <dc:creator><a rel="nofollow" href="http://www.iut-fbleau.fr/projet/etc/">etc</a></dc:creator>
 
</item>
<item>
     <title>Comment on Personal greeting in comments form by etc</title>
     <link><a href="https://textpattern.tips/personal-greeting-in-comments-form#c001143" id="c001143">1</a></link>
     <guid><a href="https://textpattern.tips/personal-greeting-in-comments-form#c001143" id="c001143">1</a></guid>
     <pubDate>Sun, 09 Sep 12 14:44:38 +0000</pubDate>
     <description><![CDATA[<p>Sorry, it should be</p><pre><code>&lt;txp:etc_query globals="_COOKIE,_POST" data="{?txp_name,name}"&gt;
  Welcome back, {?}.
&lt;txp:else /&gt;
  Other text.
&lt;/txp:etc_query&gt;
</code></pre>]]></description>
     <content:encoded><![CDATA[<p>Sorry, it should be</p><pre><code>&lt;txp:etc_query globals="_COOKIE,_POST" data="{?txp_name,name}"&gt;
  Welcome back, {?}.
&lt;txp:else /&gt;
  Other text.
&lt;/txp:etc_query&gt;
</code></pre>]]></content:encoded>
     <dc:creator><a rel="nofollow" href="http://www.iut-fbleau.fr/projet/etc/">etc</a></dc:creator>
 
</item>

</channel>
</rss>