<?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: Using PHP and MySQL to Create a Simple Contact Form and Results Browser</title>
	<atom:link href="http://brian.dobberteen.com/code/using-php-and-mysql-to-create-a-simple-contact-form-and-results-browser/feed/" rel="self" type="application/rss+xml" />
	<link>http://brian.dobberteen.com/code/using-php-and-mysql-to-create-a-simple-contact-form-and-results-browser/</link>
	<description>Fun With Web Development!</description>
	<lastBuildDate>Tue, 21 May 2013 00:36:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Adding a simple contact form to your website &#8230; easy &#124; Innovation of the web</title>
		<link>http://brian.dobberteen.com/code/using-php-and-mysql-to-create-a-simple-contact-form-and-results-browser/comment-page-1/#comment-62681</link>
		<dc:creator>Adding a simple contact form to your website &#8230; easy &#124; Innovation of the web</dc:creator>
		<pubDate>Tue, 21 May 2013 00:36:12 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=169#comment-62681</guid>
		<description><![CDATA[[...] Link: http://brian.dobberteen.com/code/using-php-and-mysql-to-create-a-simple-contact-form-and-results-bro... [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Link: http://brian.dobberteen.com/code/using-php-and-mysql-to-create-a-simple-contact-form-and-results-bro&#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shubham</title>
		<link>http://brian.dobberteen.com/code/using-php-and-mysql-to-create-a-simple-contact-form-and-results-browser/comment-page-1/#comment-60777</link>
		<dc:creator>shubham</dc:creator>
		<pubDate>Tue, 07 May 2013 20:55:13 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=169#comment-60777</guid>
		<description><![CDATA[well how to arrange ol these fileS?? form action=??? second page or d third page?? i&#039;m confused.plz help me..]]></description>
		<content:encoded><![CDATA[<p>well how to arrange ol these fileS?? form action=??? second page or d third page?? i&#8217;m confused.plz help me..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brian</title>
		<link>http://brian.dobberteen.com/code/using-php-and-mysql-to-create-a-simple-contact-form-and-results-browser/comment-page-1/#comment-49238</link>
		<dc:creator>brian</dc:creator>
		<pubDate>Thu, 04 Apr 2013 20:53:46 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=169#comment-49238</guid>
		<description><![CDATA[Hi,

I am fairly certain that most available blog software packages out there offer some sort of WYSIWYG editor. I know for a fact that WordPress comes with a WYSIWYG editor out-of-the-box.

When you need finer-grained control over the layout of your posts, I would imagine that most blogware allows direct editing of the source HTML. WordPress definitely allows direct HTML editing.

Hope this helps!]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am fairly certain that most available blog software packages out there offer some sort of WYSIWYG editor. I know for a fact that WordPress comes with a WYSIWYG editor out-of-the-box.</p>
<p>When you need finer-grained control over the layout of your posts, I would imagine that most blogware allows direct editing of the source HTML. WordPress definitely allows direct HTML editing.</p>
<p>Hope this helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: olap.com</title>
		<link>http://brian.dobberteen.com/code/using-php-and-mysql-to-create-a-simple-contact-form-and-results-browser/comment-page-1/#comment-49106</link>
		<dc:creator>olap.com</dc:creator>
		<pubDate>Thu, 04 Apr 2013 14:15:18 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=169#comment-49106</guid>
		<description><![CDATA[Hi this is somewhat of off topic but I was wanting to 
know if blogs use WYSIWYG editors or if you have to manually code 
with HTML. I&#039;m starting a blog soon but have no coding experience so I wanted to get guidance from someone with experience. Any help would be enormously appreciated!]]></description>
		<content:encoded><![CDATA[<p>Hi this is somewhat of off topic but I was wanting to<br />
know if blogs use WYSIWYG editors or if you have to manually code<br />
with HTML. I&#8217;m starting a blog soon but have no coding experience so I wanted to get guidance from someone with experience. Any help would be enormously appreciated!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Galileo</title>
		<link>http://brian.dobberteen.com/code/using-php-and-mysql-to-create-a-simple-contact-form-and-results-browser/comment-page-1/#comment-48879</link>
		<dc:creator>Galileo</dc:creator>
		<pubDate>Wed, 03 Apr 2013 15:12:56 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=169#comment-48879</guid>
		<description><![CDATA[Thanks a lot for the tutorial. It was really helpful to learn how to connect all th elements of a web form. I&#039;m trying to create a local mySQL inventory and the tutorial really helps.

I just want to point out one thing for whoever is trying to implement this example. There was only one problem when using the code provided. The variable names used in the php (lines 4-6) does not match the &#039;name&#039; attributes of the the form. Once that part of the php code was changed (see below), the form works like a charm.

Modified php Line 4-6
    $contactName = $_POST[&quot;Name&quot;];
    $contactEmail = $_POST[&quot;Email&quot;];
    $contactLeastFavoriteColor = $_POST[&quot;LeastFavoriteColor&quot;];]]></description>
		<content:encoded><![CDATA[<p>Thanks a lot for the tutorial. It was really helpful to learn how to connect all th elements of a web form. I&#8217;m trying to create a local mySQL inventory and the tutorial really helps.</p>
<p>I just want to point out one thing for whoever is trying to implement this example. There was only one problem when using the code provided. The variable names used in the php (lines 4-6) does not match the &#8216;name&#8217; attributes of the the form. Once that part of the php code was changed (see below), the form works like a charm.</p>
<p>Modified php Line 4-6<br />
    $contactName = $_POST["Name"];<br />
    $contactEmail = $_POST["Email"];<br />
    $contactLeastFavoriteColor = $_POST["LeastFavoriteColor"];</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aamena</title>
		<link>http://brian.dobberteen.com/code/using-php-and-mysql-to-create-a-simple-contact-form-and-results-browser/comment-page-1/#comment-46049</link>
		<dc:creator>aamena</dc:creator>
		<pubDate>Tue, 26 Mar 2013 13:05:46 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=169#comment-46049</guid>
		<description><![CDATA[you are a life saver!!!!!!!!!!!]]></description>
		<content:encoded><![CDATA[<p>you are a life saver!!!!!!!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mp</title>
		<link>http://brian.dobberteen.com/code/using-php-and-mysql-to-create-a-simple-contact-form-and-results-browser/comment-page-1/#comment-41938</link>
		<dc:creator>mp</dc:creator>
		<pubDate>Wed, 06 Mar 2013 14:20:22 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=169#comment-41938</guid>
		<description><![CDATA[I have been looking for an actual valid script
file.php

i&#039;d like to add those inserted data in the form to mysql.
been having troubles and i need some help and its urgent]]></description>
		<content:encoded><![CDATA[<p>I have been looking for an actual valid script<br />
file.php</p>
<p>i&#8217;d like to add those inserted data in the form to mysql.<br />
been having troubles and i need some help and its urgent</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mp</title>
		<link>http://brian.dobberteen.com/code/using-php-and-mysql-to-create-a-simple-contact-form-and-results-browser/comment-page-1/#comment-41937</link>
		<dc:creator>mp</dc:creator>
		<pubDate>Wed, 06 Mar 2013 14:18:11 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=169#comment-41937</guid>
		<description><![CDATA[hey guys is this a valid code?]]></description>
		<content:encoded><![CDATA[<p>hey guys is this a valid code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bonbon rouge</title>
		<link>http://brian.dobberteen.com/code/using-php-and-mysql-to-create-a-simple-contact-form-and-results-browser/comment-page-1/#comment-39729</link>
		<dc:creator>bonbon rouge</dc:creator>
		<pubDate>Thu, 07 Feb 2013 22:51:54 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=169#comment-39729</guid>
		<description><![CDATA[grwat sitree for the php training]]></description>
		<content:encoded><![CDATA[<p>grwat sitree for the php training</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bonbon rouge</title>
		<link>http://brian.dobberteen.com/code/using-php-and-mysql-to-create-a-simple-contact-form-and-results-browser/comment-page-1/#comment-39728</link>
		<dc:creator>bonbon rouge</dc:creator>
		<pubDate>Thu, 07 Feb 2013 22:51:01 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=169#comment-39728</guid>
		<description><![CDATA[hmmm great]]></description>
		<content:encoded><![CDATA[<p>hmmm great</p>
]]></content:encoded>
	</item>
</channel>
</rss>
