<?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 to Create a Contact Form Using PHP and AJAX</title>
	<atom:link href="http://blog.themeforest.net/tutorials/how-to-create-a-contact-form-using-php-and-ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.themeforest.net/tutorials/how-to-create-a-contact-form-using-php-and-ajax/</link>
	<description>The ThemeForest Blog</description>
	<lastBuildDate>Mon, 27 Sep 2010 19:49:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Free web resources &#8211; Net-Kit.com &#187; Blog Archive &#187; 15 Ajax contact / feedback forms</title>
		<link>http://blog.themeforest.net/tutorials/how-to-create-a-contact-form-using-php-and-ajax/comment-page-2/#comment-25990</link>
		<dc:creator>Free web resources &#8211; Net-Kit.com &#187; Blog Archive &#187; 15 Ajax contact / feedback forms</dc:creator>
		<pubDate>Mon, 23 Nov 2009 06:20:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=557#comment-25990</guid>
		<description>[...]  15. How to create a form using Php and Ajax [...]</description>
		<content:encoded><![CDATA[<p>[...]  15. How to create a form using Php and Ajax [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Martev</title>
		<link>http://blog.themeforest.net/tutorials/how-to-create-a-contact-form-using-php-and-ajax/comment-page-2/#comment-23012</link>
		<dc:creator>Martin Martev</dc:creator>
		<pubDate>Mon, 07 Sep 2009 14:03:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=557#comment-23012</guid>
		<description>when i added a select menu in my form it does not work in ie8 (object expectetd error) on this line: var cont = $(&#039;select#cont&#039;).val(); works in other browsers and older ie versions any ideas?</description>
		<content:encoded><![CDATA[<p>when i added a select menu in my form it does not work in ie8 (object expectetd error) on this line: var cont = $(&#8217;select#cont&#8217;).val(); works in other browsers and older ie versions any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Martev</title>
		<link>http://blog.themeforest.net/tutorials/how-to-create-a-contact-form-using-php-and-ajax/comment-page-2/#comment-23010</link>
		<dc:creator>Martin Martev</dc:creator>
		<pubDate>Mon, 07 Sep 2009 13:24:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=557#comment-23010</guid>
		<description>When i test this in ie8 i get the object expecter error on line 15 char 3
this is my code
$(function() {
    // These first three lines of code compensate for Javascript being turned on and off. 
    // It simply changes the submit input field from a type of &quot;submit&quot; to a type of &quot;button&quot;.

    var paraTag = $(&#039;input#submit&#039;).parent(&#039;p&#039;);
    $(paraTag).children(&#039;input&#039;).remove();
    $(paraTag).append(&#039;&#039;);

    $(&#039;#main input#submit&#039;).click(function() {
        $(&#039;#main&#039;).append(&#039;&#039;);

        var name = $(&#039;input#name&#039;).val();
        var email = $(&#039;input#email&#039;).val();
		var tel = $(&#039;input#tel&#039;).val();
		var contactmethod = $(&#039;select#contactmethod&#039;).val();
        var comments = $(&#039;textarea#comments&#039;).val();

        $.ajax({
            type: &#039;post&#039;,
            url: &#039;sendEmail.php&#039;,
            data: &#039;name=&#039; + name + &#039;&amp;email=&#039; + email + &#039;&amp;tel=&#039; + tel + &#039;&amp;contactmethod=&#039; + contactmethod + &#039;&amp;comments=&#039; + comments,

            success: function(results) {
                $(&#039;#main img.loaderIcon&#039;).fadeOut(1000);
                $(&#039;ul#response&#039;).html(results);
            }
        }); // end ajax
    });
});
any ideas?</description>
		<content:encoded><![CDATA[<p>When i test this in ie8 i get the object expecter error on line 15 char 3<br />
this is my code<br />
$(function() {<br />
    // These first three lines of code compensate for Javascript being turned on and off.<br />
    // It simply changes the submit input field from a type of &#8220;submit&#8221; to a type of &#8220;button&#8221;.</p>
<p>    var paraTag = $(&#8216;input#submit&#8217;).parent(&#8216;p&#8217;);<br />
    $(paraTag).children(&#8216;input&#8217;).remove();<br />
    $(paraTag).append(&#8221;);</p>
<p>    $(&#8216;#main input#submit&#8217;).click(function() {<br />
        $(&#8216;#main&#8217;).append(&#8221;);</p>
<p>        var name = $(&#8216;input#name&#8217;).val();<br />
        var email = $(&#8216;input#email&#8217;).val();<br />
		var tel = $(&#8216;input#tel&#8217;).val();<br />
		var contactmethod = $(&#8217;select#contactmethod&#8217;).val();<br />
        var comments = $(&#8216;textarea#comments&#8217;).val();</p>
<p>        $.ajax({<br />
            type: &#8216;post&#8217;,<br />
            url: &#8217;sendEmail.php&#8217;,<br />
            data: &#8216;name=&#8217; + name + &#8216;&amp;email=&#8217; + email + &#8216;&amp;tel=&#8217; + tel + &#8216;&amp;contactmethod=&#8217; + contactmethod + &#8216;&amp;comments=&#8217; + comments,</p>
<p>            success: function(results) {<br />
                $(&#8216;#main img.loaderIcon&#8217;).fadeOut(1000);<br />
                $(&#8216;ul#response&#8217;).html(results);<br />
            }<br />
        }); // end ajax<br />
    });<br />
});<br />
any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bb designer</title>
		<link>http://blog.themeforest.net/tutorials/how-to-create-a-contact-form-using-php-and-ajax/comment-page-2/#comment-21812</link>
		<dc:creator>bb designer</dc:creator>
		<pubDate>Fri, 28 Aug 2009 10:30:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=557#comment-21812</guid>
		<description>hey jeff! you r great ! actually,i tested your form locally with wamp and it works fine but when i checked it online by free hosting company byethost.com which allows sendmail function when i send message it waits for a while and says u r message has been sent as usuall ! but i&#039;m unable to receive any mail ? why is dat? can u help me plz? should i get paid hosting ? or wat kinda solution do u prefer? 

thanks in adavnce ! 
sj.</description>
		<content:encoded><![CDATA[<p>hey jeff! you r great ! actually,i tested your form locally with wamp and it works fine but when i checked it online by free hosting company byethost.com which allows sendmail function when i send message it waits for a while and says u r message has been sent as usuall ! but i&#8217;m unable to receive any mail ? why is dat? can u help me plz? should i get paid hosting ? or wat kinda solution do u prefer? </p>
<p>thanks in adavnce !<br />
sj.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Corinne</title>
		<link>http://blog.themeforest.net/tutorials/how-to-create-a-contact-form-using-php-and-ajax/comment-page-2/#comment-21174</link>
		<dc:creator>Corinne</dc:creator>
		<pubDate>Thu, 20 Aug 2009 21:32:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=557#comment-21174</guid>
		<description>Hello Jeffrey,

I&#039;ve been using your form on several websites but for some reason it&#039;s not working for a current one.

I use Chrome&#039;s Javascript console and this is what I get:

Uncaught ReferenceError: $ is not defined (Line 1)

What I did was remove the message portions because I just needed visitors to sign up with their name and email. The PHP script works fine thankfully!

Mail script: http://templates.cordesignonline.com/comingsoon/mailscript.js
Page: http://templates.cordesignonline.com/comingsoon

I&#039;ve compared the JS code with the original and nothing else is different so I&#039;m thinking it might be the HTML or even CSS. Please help if you can. I know you&#039;re a busy guy! 

Thanks a lot,
Corinne</description>
		<content:encoded><![CDATA[<p>Hello Jeffrey,</p>
<p>I&#8217;ve been using your form on several websites but for some reason it&#8217;s not working for a current one.</p>
<p>I use Chrome&#8217;s Javascript console and this is what I get:</p>
<p>Uncaught ReferenceError: $ is not defined (Line 1)</p>
<p>What I did was remove the message portions because I just needed visitors to sign up with their name and email. The PHP script works fine thankfully!</p>
<p>Mail script: <a href="http://templates.cordesignonline.com/comingsoon/mailscript.js" rel="nofollow">http://templates.cordesignonline.com/comingsoon/mailscript.js</a><br />
Page: <a href="http://templates.cordesignonline.com/comingsoon" rel="nofollow">http://templates.cordesignonline.com/comingsoon</a></p>
<p>I&#8217;ve compared the JS code with the original and nothing else is different so I&#8217;m thinking it might be the HTML or even CSS. Please help if you can. I know you&#8217;re a busy guy! </p>
<p>Thanks a lot,<br />
Corinne</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://blog.themeforest.net/tutorials/how-to-create-a-contact-form-using-php-and-ajax/comment-page-2/#comment-17703</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 23 Jul 2009 17:57:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=557#comment-17703</guid>
		<description>Great screencast! Cheers Jeff!

To people getting this error:

Notice: Undefined variable: error in C:\wamp\www\contact_form\sendEmail.php on line 22

or something similar, if you host it on the internet, this error should not appear. Well in my case it didn&#039;t. I&#039;m guessing it is something to do with wamp not allowing to send mail.</description>
		<content:encoded><![CDATA[<p>Great screencast! Cheers Jeff!</p>
<p>To people getting this error:</p>
<p>Notice: Undefined variable: error in C:\wamp\www\contact_form\sendEmail.php on line 22</p>
<p>or something similar, if you host it on the internet, this error should not appear. Well in my case it didn&#8217;t. I&#8217;m guessing it is something to do with wamp not allowing to send mail.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mattrix</title>
		<link>http://blog.themeforest.net/tutorials/how-to-create-a-contact-form-using-php-and-ajax/comment-page-2/#comment-17422</link>
		<dc:creator>Mattrix</dc:creator>
		<pubDate>Tue, 21 Jul 2009 06:13:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=557#comment-17422</guid>
		<description>I must be doing something wrong, because I get these errors straight away, before changing any of the downloaded source code:


Notice: Undefined variable: error in C:\wamp\www\contact_form\sendEmail.php on line 22

Deprecated: Function eregi() is deprecated in C:\wamp\www\contact_form\phpMailer\class.phpmailer.php on line 594

Notice: Undefined variable: extra in C:\wamp\www\contact_form\phpMailer\class.smtp.php on line 173

Warning: stream_socket_enable_crypto() [streams.crypto]: this stream does not support SSL/crypto in C:\wamp\www\contact_form\phpMailer\class.smtp.php on line 194


If anyone can tell me what I&#039;m doing wrong it would be appreciated.
(oh, I&#039;m running through WAMP, but I just got it, so I don&#039;t really know how to work it.)</description>
		<content:encoded><![CDATA[<p>I must be doing something wrong, because I get these errors straight away, before changing any of the downloaded source code:</p>
<p>Notice: Undefined variable: error in C:\wamp\www\contact_form\sendEmail.php on line 22</p>
<p>Deprecated: Function eregi() is deprecated in C:\wamp\www\contact_form\phpMailer\class.phpmailer.php on line 594</p>
<p>Notice: Undefined variable: extra in C:\wamp\www\contact_form\phpMailer\class.smtp.php on line 173</p>
<p>Warning: stream_socket_enable_crypto() [streams.crypto]: this stream does not support SSL/crypto in C:\wamp\www\contact_form\phpMailer\class.smtp.php on line 194</p>
<p>If anyone can tell me what I&#8217;m doing wrong it would be appreciated.<br />
(oh, I&#8217;m running through WAMP, but I just got it, so I don&#8217;t really know how to work it.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronald H.</title>
		<link>http://blog.themeforest.net/tutorials/how-to-create-a-contact-form-using-php-and-ajax/comment-page-2/#comment-17047</link>
		<dc:creator>Ronald H.</dc:creator>
		<pubDate>Sat, 18 Jul 2009 17:41:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=557#comment-17047</guid>
		<description>The fact that you made a video about this really makes a difference. I my opinion, all tutorials need both video (for visual), and text for refer purposes.</description>
		<content:encoded><![CDATA[<p>The fact that you made a video about this really makes a difference. I my opinion, all tutorials need both video (for visual), and text for refer purposes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Martev</title>
		<link>http://blog.themeforest.net/tutorials/how-to-create-a-contact-form-using-php-and-ajax/comment-page-2/#comment-16947</link>
		<dc:creator>Martin Martev</dc:creator>
		<pubDate>Fri, 17 Jul 2009 11:50:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=557#comment-16947</guid>
		<description>to MGFX this happend to me too in my case i did receive the e-mail they just ended up in the trash bin and never showed up in the inbox and did not show as unread mails in the trash but it still worked</description>
		<content:encoded><![CDATA[<p>to MGFX this happend to me too in my case i did receive the e-mail they just ended up in the trash bin and never showed up in the inbox and did not show as unread mails in the trash but it still worked</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Martev</title>
		<link>http://blog.themeforest.net/tutorials/how-to-create-a-contact-form-using-php-and-ajax/comment-page-2/#comment-16847</link>
		<dc:creator>Martin Martev</dc:creator>
		<pubDate>Thu, 16 Jul 2009 11:38:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=557#comment-16847</guid>
		<description>never mind that it was a miss on my end</description>
		<content:encoded><![CDATA[<p>never mind that it was a miss on my end</p>
]]></content:encoded>
	</item>
</channel>
</rss>

