<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Webmaster Kitchen</title>
	<atom:link href="http://www.webmasterkitchen.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webmasterkitchen.com</link>
	<description>Cooking Up Recipies For Success</description>
	<pubDate>Tue, 19 Aug 2008 19:55:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>A Better Way to Handle HTML Field Arrays With PHP</title>
		<link>http://www.webmasterkitchen.com/article/a-better-way-to-handle-html-field-arrays-with-php/</link>
		<comments>http://www.webmasterkitchen.com/article/a-better-way-to-handle-html-field-arrays-with-php/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 19:54:54 +0000</pubDate>
		<dc:creator>Vance L</dc:creator>
		
		<category><![CDATA[HTML]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[form field arrays]]></category>

		<category><![CDATA[php arrays]]></category>

		<guid isPermaLink="false">http://www.webmasterkitchen.com/?p=17</guid>
		<description><![CDATA[Adding HTML fields so that when they get submitted back to the server in an array format is easy, but what about when you want to group multiple fields together to make up a single entry?  Most of the time, that&#8217;s when things get a bit tricky.  In order for the array fields [...]]]></description>
		<wfw:commentRss>http://www.webmasterkitchen.com/article/a-better-way-to-handle-html-field-arrays-with-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>TinyMCE AJAX Form Submission</title>
		<link>http://www.webmasterkitchen.com/article/tinymce-ajax-form-submission/</link>
		<comments>http://www.webmasterkitchen.com/article/tinymce-ajax-form-submission/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 23:05:14 +0000</pubDate>
		<dc:creator>Vance L</dc:creator>
		
		<category><![CDATA[AJAX]]></category>

		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.webmasterkitchen.com/?p=7</guid>
		<description><![CDATA[The documentation wiki on TinyMCE provides a great tutorial on how to turn TinyMCE into a standalone AJAX editor.  But what it doesn&#8217;t have is a great tutorial on how to update the contents of TinyMCE into the original &#60;textarea&#62; form element for more passive AJAX saving.

I recently came across a situation where I needed [...]]]></description>
		<wfw:commentRss>http://www.webmasterkitchen.com/article/tinymce-ajax-form-submission/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Incorrect FALSE result for PHP&#8217;s strpos() function</title>
		<link>http://www.webmasterkitchen.com/article/incorrect-false-result-for-php-strpos-function/</link>
		<comments>http://www.webmasterkitchen.com/article/incorrect-false-result-for-php-strpos-function/#comments</comments>
		<pubDate>Wed, 14 May 2008 09:02:23 +0000</pubDate>
		<dc:creator>Vance L</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[strpos]]></category>

		<guid isPermaLink="false">http://www.webmasterkitchen.com/?p=5</guid>
		<description><![CDATA[All too often, I see code like this, attempting to test if a particular string is found in a variable:


$test = 'abc123';
if&#40;strpos&#40;$test, 'abc'&#41;&#41; &#123;
    // do comething
&#125;


This statement is actually a common mistake, because the strpos() function returns the integer position of the first found letter in the string searched for.  [...]]]></description>
		<wfw:commentRss>http://www.webmasterkitchen.com/article/incorrect-false-result-for-php-strpos-function/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Having Problems with PHP&#8217;s SimpleXML and SOAP Results?</title>
		<link>http://www.webmasterkitchen.com/article/problems-with-php-simplexml-soap-results/</link>
		<comments>http://www.webmasterkitchen.com/article/problems-with-php-simplexml-soap-results/#comments</comments>
		<pubDate>Fri, 22 Feb 2008 11:56:52 +0000</pubDate>
		<dc:creator>Vance L</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[SimpleXML]]></category>

		<guid isPermaLink="false">http://www.webmasterkitchen.com/?p=3</guid>
		<description><![CDATA[SimpleXML does not correctly parse SOAP XML results if the result comes back with colons &#8216;:&#8217; in a tag, like &#60;soap:Envelope&#62;.  Why?  Because SimpleXML treats the colon character &#8216;:&#8217; as an XML namespace, and places the entire contents of the SOAP XML result inside a namespace within the SimpleXML object.  There is [...]]]></description>
		<wfw:commentRss>http://www.webmasterkitchen.com/article/problems-with-php-simplexml-soap-results/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP Error - Warning: Cannot modify header information - headers already sent by &#8230;</title>
		<link>http://www.webmasterkitchen.com/article/php-error-warning-cannot-modify-header-information-headers-already-sent-by/</link>
		<comments>http://www.webmasterkitchen.com/article/php-error-warning-cannot-modify-header-information-headers-already-sent-by/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 17:50:41 +0000</pubDate>
		<dc:creator>Vance L</dc:creator>
		
		<category><![CDATA[Error Messages]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.webmasterkitchen.com/?p=4</guid>
		<description><![CDATA[This post is a HOWTO article about how to resolve the PHP Error "Warning: Cannot modify header information - headers already sent by ...".  This post provides the cause, an explanation, and a resolution for the error.]]></description>
		<wfw:commentRss>http://www.webmasterkitchen.com/article/php-error-warning-cannot-modify-header-information-headers-already-sent-by/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
