<?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: How do i put on box on my website for readers to comment?</title>
	<atom:link href="http://www.cascadiacomic.com/website-inbox/how-do-i-put-on-box-on-my-website-for-readers-to-comment/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cascadiacomic.com/website-inbox/how-do-i-put-on-box-on-my-website-for-readers-to-comment</link>
	<description></description>
	<lastBuildDate>Mon, 30 Jan 2012 14:15:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Ron</title>
		<link>http://www.cascadiacomic.com/website-inbox/how-do-i-put-on-box-on-my-website-for-readers-to-comment/comment-page-1#comment-1349</link>
		<dc:creator>Ron</dc:creator>
		<pubDate>Thu, 25 Feb 2010 15:05:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.cascadiacomic.com/website-inbox/how-do-i-put-on-box-on-my-website-for-readers-to-comment#comment-1349</guid>
		<description>Comment boxes are designed to add directly to the web page where they are installed. You want comments emailed to you, then you just want a standard email form. Best is server-side if your host allows PHP and SMTP. If not, you will have to use a client-side form.

Basic Client-Side Mailto: Form:

&lt;form method=&quot;post&quot; action=&quot;mailto:someone@$nailmail.com&quot; enctype=&quot;text/plain&quot;&gt;
&lt;input type=&quot;text&quot; name=&quot;username&quot;&gt; : name &lt;br&gt;
&lt;input type=&quot;text&quot; name=&quot;email&quot;&gt; : email &lt;br&gt;
comments &lt;br&gt;
&lt;textarea name=&quot;comments&quot; rows=&quot;10&quot; wrap=&quot;hard&quot;&gt;
&lt;/textarea&gt;
&lt;input name=&quot;redirect&quot; type=&quot;hidden&quot; value=&quot;index.html&quot;&gt;
&lt;input name=&quot;NEXT_URL&quot; type=&quot;hidden&quot; value=&quot;index.html&quot;&gt;&lt;br&gt;
&lt;input type=&quot;submit&quot; value=&quot;Send&quot;&gt;
&lt;input type=&quot;reset&quot; value=&quot;Clear&quot;&gt;
&lt;/form&gt;

mailto - Web-based email Form Handler: http://www.washington.edu/webinfo/mailto/

Use a server-side script language if your web site allows it. Otherwise, you will have to use a client-side dependent &quot;mailto:&quot; action to get the form info sent to you.

Your current hosting package MUST allow SMTP ( http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol ) to work. Otherwise, no email can be sent.

Use any of the below sites to make the workable form you need:

For making forms:

These are really good online form makers. Just follow the instructions for making it and uploading file(s).

http://www.phpform.org/ (Best-est)
http://www.tele-pro.co.uk/scripts/contact_form/
http://jotform.com/ (WYSIWYG Form Maker)
http://www.thesitewizard.com/wizards/feedbackform.shtml
http://www.thepcmanwebsite.com/form_mail.shtml&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;http://emailmeform.com/
http://www.freecontactform.com/
http://www.reconn.us/content/view/12/34/ (Download - Contact Us Script) 
http://formsmarts.com/


Ron</description>
		<content:encoded><![CDATA[<p>Comment boxes are designed to add directly to the web page where they are installed. You want comments emailed to you, then you just want a standard email form. Best is server-side if your host allows PHP and SMTP. If not, you will have to use a client-side form.</p>
<p>Basic Client-Side Mailto: Form:</p>
<p>&lt;form method=&quot;post&quot; action=&quot;mailto:someone@$nailmail.com&quot; enctype=&quot;text/plain&quot;&gt;<br />
&lt;input type=&quot;text&quot; name=&quot;username&quot;&gt; : name &lt;br&gt;<br />
&lt;input type=&quot;text&quot; name=&quot;email&quot;&gt; : email &lt;br&gt;<br />
comments &lt;br&gt;<br />
&lt;textarea name=&quot;comments&quot; rows=&quot;10&quot; wrap=&quot;hard&quot;&gt;<br />
&lt;/textarea&gt;<br />
&lt;input name=&quot;redirect&quot; type=&quot;hidden&quot; value=&quot;index.html&quot;&gt;<br />
&lt;input name=&quot;NEXT_URL&quot; type=&quot;hidden&quot; value=&quot;index.html&quot;&gt;&lt;br&gt;<br />
&lt;input type=&quot;submit&quot; value=&quot;Send&quot;&gt;<br />
&lt;input type=&quot;reset&quot; value=&quot;Clear&quot;&gt;<br />
&lt;/form&gt;</p>
<p>mailto &#8211; Web-based email Form Handler: <a href="http://www.washington.edu/webinfo/mailto/" rel="nofollow">http://www.washington.edu/webinfo/mailto/</a></p>
<p>Use a server-side script language if your web site allows it. Otherwise, you will have to use a client-side dependent &quot;mailto:&quot; action to get the form info sent to you.</p>
<p>Your current hosting package MUST allow SMTP ( <a href="http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol" rel="nofollow">http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol</a> ) to work. Otherwise, no email can be sent.</p>
<p>Use any of the below sites to make the workable form you need:</p>
<p>For making forms:</p>
<p>These are really good online form makers. Just follow the instructions for making it and uploading file(s).</p>
<p><a href="http://www.phpform.org/" rel="nofollow">http://www.phpform.org/</a> (Best-est)<br />
<a href="http://www.tele-pro.co.uk/scripts/contact_form/" rel="nofollow">http://www.tele-pro.co.uk/scripts/contact_form/</a><br />
<a href="http://jotform.com/" rel="nofollow">http://jotform.com/</a> (WYSIWYG Form Maker)<br />
<a href="http://www.thesitewizard.com/wizards/feedbackform.shtml" rel="nofollow">http://www.thesitewizard.com/wizards/feedbackform.shtml</a><br />
<a href="http://www.thepcmanwebsite.com/form_mail.shtml" rel="nofollow">http://www.thepcmanwebsite.com/form_mail.shtml</a><br /><b>References : </b><br /><a href="http://emailmeform.com/" rel="nofollow">http://emailmeform.com/</a><br />
<a href="http://www.freecontactform.com/" rel="nofollow">http://www.freecontactform.com/</a><br />
<a href="http://www.reconn.us/content/view/12/34/" rel="nofollow">http://www.reconn.us/content/view/12/34/</a> (Download &#8211; Contact Us Script)<br />
<a href="http://formsmarts.com/" rel="nofollow">http://formsmarts.com/</a></p>
<p>Ron</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: frankie</title>
		<link>http://www.cascadiacomic.com/website-inbox/how-do-i-put-on-box-on-my-website-for-readers-to-comment/comment-page-1#comment-1348</link>
		<dc:creator>frankie</dc:creator>
		<pubDate>Thu, 25 Feb 2010 14:55:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.cascadiacomic.com/website-inbox/how-do-i-put-on-box-on-my-website-for-readers-to-comment#comment-1348</guid>
		<description>Hope one of these links helps you install a comment box on your website which directs comments to your e-mail. . .

http://www.ehow.com/how_5313223_make-own-comment-box.html

http://aldebaranwebdesign.com/blog/adding-a-newsletter-or-email-marketing-feature-to-your-website/

http://support.js-kit.com/jskit/topics/not_sure_how_install_on_my_website

http://www.widgiland.com/WidgetDetail.aspx?Gadcod=1159&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>Hope one of these links helps you install a comment box on your website which directs comments to your e-mail. . .</p>
<p><a href="http://www.ehow.com/how_5313223_make-own-comment-box.html" rel="nofollow">http://www.ehow.com/how_5313223_make-own-comment-box.html</a></p>
<p><a href="http://aldebaranwebdesign.com/blog/adding-a-newsletter-or-email-marketing-feature-to-your-website/" rel="nofollow">http://aldebaranwebdesign.com/blog/adding-a-newsletter-or-email-marketing-feature-to-your-website/</a></p>
<p><a href="http://support.js-kit.com/jskit/topics/not_sure_how_install_on_my_website" rel="nofollow">http://support.js-kit.com/jskit/topics/not_sure_how_install_on_my_website</a></p>
<p><a href="http://www.widgiland.com/WidgetDetail.aspx?Gadcod=1159" rel="nofollow">http://www.widgiland.com/WidgetDetail.aspx?Gadcod=1159</a><br /><b>References : </b></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jewelle</title>
		<link>http://www.cascadiacomic.com/website-inbox/how-do-i-put-on-box-on-my-website-for-readers-to-comment/comment-page-1#comment-1347</link>
		<dc:creator>Jewelle</dc:creator>
		<pubDate>Thu, 25 Feb 2010 14:25:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.cascadiacomic.com/website-inbox/how-do-i-put-on-box-on-my-website-for-readers-to-comment#comment-1347</guid>
		<description>If you made your own you would have to do some server-side scripting, so unless you&#039;re up for that you&#039;d want to go with a hosted solution - most of which include ads. 

This one might work: http://www.htmlcommentbox.com/&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>If you made your own you would have to do some server-side scripting, so unless you&#8217;re up for that you&#8217;d want to go with a hosted solution &#8211; most of which include ads. </p>
<p>This one might work: <a href="http://www.htmlcommentbox.com/" rel="nofollow">http://www.htmlcommentbox.com/</a><br /><b>References : </b></p>
]]></content:encoded>
	</item>
</channel>
</rss>

