<?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: Create fancy contact form with CSS 3 and jQuery</title>
	<atom:link href="http://youhack.me/2010/07/22/create-a-fancy-contact-form-with-css-3-and-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://youhack.me/2010/07/22/create-a-fancy-contact-form-with-css-3-and-jquery/</link>
	<description>Tips,Tricks and Hacks!</description>
	<lastBuildDate>Wed, 01 Feb 2012 03:25:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Alex</title>
		<link>http://youhack.me/2010/07/22/create-a-fancy-contact-form-with-css-3-and-jquery/comment-page-1/#comment-1297</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sat, 14 Jan 2012 20:17:36 +0000</pubDate>
		<guid isPermaLink="false">http://youhack.me/?p=600#comment-1297</guid>
		<description>Hi I have tried this on my website www.alexrostron.co.uk but I can&#039;t get the email to submit :(
Do you need winamp on your host server and would the file have to be index.html or index.php?
thanks for any help</description>
		<content:encoded><![CDATA[<p>Hi I have tried this on my website <a href="http://www.alexrostron.co.uk" rel="nofollow">http://www.alexrostron.co.uk</a> but I can&#8217;t get the email to submit :(<br />
Do you need winamp on your host server and would the file have to be index.html or index.php?<br />
thanks for any help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepak Pathak</title>
		<link>http://youhack.me/2010/07/22/create-a-fancy-contact-form-with-css-3-and-jquery/comment-page-1/#comment-1295</link>
		<dc:creator>Deepak Pathak</dc:creator>
		<pubDate>Fri, 13 Jan 2012 12:55:36 +0000</pubDate>
		<guid isPermaLink="false">http://youhack.me/?p=600#comment-1295</guid>
		<description>This seems to be good. Going to try that for my website with few modifications in CSS.</description>
		<content:encoded><![CDATA[<p>This seems to be good. Going to try that for my website with few modifications in CSS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Liz</title>
		<link>http://youhack.me/2010/07/22/create-a-fancy-contact-form-with-css-3-and-jquery/comment-page-1/#comment-1157</link>
		<dc:creator>Liz</dc:creator>
		<pubDate>Fri, 11 Nov 2011 02:14:41 +0000</pubDate>
		<guid isPermaLink="false">http://youhack.me/?p=600#comment-1157</guid>
		<description>Another helpful hint: If you want to receive the users e-mail address on the submission e-mail you receive in your inbox you need to replace 

[code]
    $body = &quot;Name:{$name}\n\nWebsite :{$web}\n\nComments:{$body}&quot;;
[/code]
with
[code]
    $body = &quot;Name:{$name}\n\nEmail:{$email}\n\nWebsite :{$web}\n\nComments:{$body}&quot;;
[/code]</description>
		<content:encoded><![CDATA[<p>Another helpful hint: If you want to receive the users e-mail address on the submission e-mail you receive in your inbox you need to replace </p>
<pre class="brush: plain;">
    $body = &quot;Name:{$name}\n\nWebsite :{$web}\n\nComments:{$body}&quot;;
</pre>
<p>with</p>
<pre class="brush: plain;">
    $body = &quot;Name:{$name}\n\nEmail:{$email}\n\nWebsite :{$web}\n\nComments:{$body}&quot;;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Liz</title>
		<link>http://youhack.me/2010/07/22/create-a-fancy-contact-form-with-css-3-and-jquery/comment-page-1/#comment-1156</link>
		<dc:creator>Liz</dc:creator>
		<pubDate>Fri, 11 Nov 2011 02:06:07 +0000</pubDate>
		<guid isPermaLink="false">http://youhack.me/?p=600#comment-1156</guid>
		<description>sorry about that here&#039;s the code:

[code]
&lt;?php

$name = $_POST[&#039;name&#039;]; // contain name of person
$email = $_POST[&#039;email&#039;]; // Email address of sender
$web = $_POST[&#039;web&#039;]; // Your website URL
$body = $_POST[&#039;text&#039;]; // Your message
$receiver = &quot;PUT YOUR EMAIL HERE&quot; ; // hardcord your email address here - This is the email address that all your feedbacks will be sent to
if (!empty($name) &amp; !empty($email) &amp;&amp; !empty($body)) {
    $body = &quot;Name:{$name}\n\nWebsite :{$web}\n\nComments:{$body}&quot;;
	$send = mail($receiver, &#039;Contact Form Submission&#039;, $body, &quot;From: {$email}&quot;);
    if ($send) {
        echo &#039;true&#039;; //if everything is ok,always return true , else ajax submission won&#039;t work
    }

}

?&gt;
[/code]</description>
		<content:encoded><![CDATA[<p>sorry about that here&#8217;s the code:</p>
<pre class="brush: plain;">
&lt;?php

$name = $_POST['name']; // contain name of person
$email = $_POST['email']; // Email address of sender
$web = $_POST['web']; // Your website URL
$body = $_POST['text']; // Your message
$receiver = &quot;PUT YOUR EMAIL HERE&quot; ; // hardcord your email address here - This is the email address that all your feedbacks will be sent to
if (!empty($name) &amp; !empty($email) &amp;&amp; !empty($body)) {
    $body = &quot;Name:{$name}\n\nWebsite :{$web}\n\nComments:{$body}&quot;;
	$send = mail($receiver, 'Contact Form Submission', $body, &quot;From: {$email}&quot;);
    if ($send) {
        echo 'true'; //if everything is ok,always return true , else ajax submission won't work
    }

}

?&gt;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Liz</title>
		<link>http://youhack.me/2010/07/22/create-a-fancy-contact-form-with-css-3-and-jquery/comment-page-1/#comment-1155</link>
		<dc:creator>Liz</dc:creator>
		<pubDate>Fri, 11 Nov 2011 02:05:07 +0000</pubDate>
		<guid isPermaLink="false">http://youhack.me/?p=600#comment-1155</guid>
		<description>Works great, thanks!

For those of you running into the issue of not knowing where to put your e-mail address replace the downloaded ajaxsubmit.php code with this:



The code from the downloaded source is missing the $receiver information. Put your e-mail address where it says PUT YOUR EMAIL HERE. 

Also, when testing your form use a valid e-mail address as the testing e-mail because I noticed the form will not send anything if the e-mail address isn&#039;t valid.. ex. test@test.com won&#039;t work

Hope that helps!</description>
		<content:encoded><![CDATA[<p>Works great, thanks!</p>
<p>For those of you running into the issue of not knowing where to put your e-mail address replace the downloaded ajaxsubmit.php code with this:</p>
<p>The code from the downloaded source is missing the $receiver information. Put your e-mail address where it says PUT YOUR EMAIL HERE. </p>
<p>Also, when testing your form use a valid e-mail address as the testing e-mail because I noticed the form will not send anything if the e-mail address isn&#8217;t valid.. ex. <a href="mailto:test@test.com">test@test.com</a> won&#8217;t work</p>
<p>Hope that helps!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

