<?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: Split a name with PHP</title>
	<atom:link href="http://sublimeorange.com/php/split-a-name-with-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://sublimeorange.com/php/split-a-name-with-php/</link>
	<description>Hello, I&#039;m Sean a student with a passion for &#60;br&#62;web development.</description>
	<lastBuildDate>Fri, 03 Feb 2012 20:38:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Nastron</title>
		<link>http://sublimeorange.com/php/split-a-name-with-php/comment-page-1/#comment-5793</link>
		<dc:creator>Nastron</dc:creator>
		<pubDate>Mon, 19 Sep 2011 12:57:29 +0000</pubDate>
		<guid isPermaLink="false">http://sublimeorange.com/?p=106#comment-5793</guid>
		<description>It&#039;s somehow of what I thought that I would do. But this kind of solution doesn&#039;t work for some arabic complex names (that consists of more than one part).</description>
		<content:encoded><![CDATA[<p>It&#8217;s somehow of what I thought that I would do. But this kind of solution doesn&#8217;t work for some arabic complex names (that consists of more than one part).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lolbox</title>
		<link>http://sublimeorange.com/php/split-a-name-with-php/comment-page-1/#comment-4620</link>
		<dc:creator>lolbox</dc:creator>
		<pubDate>Thu, 14 Jul 2011 04:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://sublimeorange.com/?p=106#comment-4620</guid>
		<description>also, is it possible to have it split 4 names in the $name field, so if i input Mr John Smith Jr the first name will be Mr John and last name would be Mith Jr? would i have to do a preg_match or something?</description>
		<content:encoded><![CDATA[<p>also, is it possible to have it split 4 names in the $name field, so if i input Mr John Smith Jr the first name will be Mr John and last name would be Mith Jr? would i have to do a preg_match or something?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lolbox</title>
		<link>http://sublimeorange.com/php/split-a-name-with-php/comment-page-1/#comment-4619</link>
		<dc:creator>lolbox</dc:creator>
		<pubDate>Thu, 14 Jul 2011 03:57:37 +0000</pubDate>
		<guid isPermaLink="false">http://sublimeorange.com/?p=106#comment-4619</guid>
		<description>great stuff:)

i&#039;m a php_newb... how can do the opposite with the first and last name so the middle initial/name goes with the first name rather than the last?</description>
		<content:encoded><![CDATA[<p>great stuff:)</p>
<p>i&#8217;m a php_newb&#8230; how can do the opposite with the first and last name so the middle initial/name goes with the first name rather than the last?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yatin</title>
		<link>http://sublimeorange.com/php/split-a-name-with-php/comment-page-1/#comment-601</link>
		<dc:creator>yatin</dc:creator>
		<pubDate>Fri, 02 Jul 2010 06:57:54 +0000</pubDate>
		<guid isPermaLink="false">http://sublimeorange.com/?p=106#comment-601</guid>
		<description>Hey,

It&#039;s a great tutorial for split description with php but what happen if string having html tags in it.

Here is a tutorial to work with that condition

http://phpschools.freehostia.com/other-stuff/split-html-description-in-php</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>It&#8217;s a great tutorial for split description with php but what happen if string having html tags in it.</p>
<p>Here is a tutorial to work with that condition</p>
<p><a href="http://phpschools.freehostia.com/other-stuff/split-html-description-in-php" rel="nofollow">http://phpschools.freehostia.com/other-stuff/split-html-description-in-php</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kent Ivar Mathisen</title>
		<link>http://sublimeorange.com/php/split-a-name-with-php/comment-page-1/#comment-26</link>
		<dc:creator>Kent Ivar Mathisen</dc:creator>
		<pubDate>Sat, 05 Sep 2009 01:52:03 +0000</pubDate>
		<guid isPermaLink="false">http://sublimeorange.com/?p=106#comment-26</guid>
		<description>$name = &quot;Kent Mathisen&quot;;
list($first, $last) = explode(&quot; &quot;, $name);
echo &quot;First name: &quot; . $first . &quot;, last name: &quot; . $last;

Won&#039;t give any errors or warnings :)</description>
		<content:encoded><![CDATA[<p>$name = &#8220;Kent Mathisen&#8221;;<br />
list($first, $last) = explode(&#8221; &#8220;, $name);<br />
echo &#8220;First name: &#8221; . $first . &#8220;, last name: &#8221; . $last;</p>
<p>Won&#8217;t give any errors or warnings <img src='http://sublimeorange.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Smith</title>
		<link>http://sublimeorange.com/php/split-a-name-with-php/comment-page-1/#comment-17</link>
		<dc:creator>John Smith</dc:creator>
		<pubDate>Thu, 13 Aug 2009 15:09:44 +0000</pubDate>
		<guid isPermaLink="false">http://sublimeorange.com/?p=106#comment-17</guid>
		<description>from http://php.net/split :

Note: As of PHP 5.3.0 the regex extension is deprecated, calling this function will issue an E_DEPRECATED notice.</description>
		<content:encoded><![CDATA[<p>from <a href="http://php.net/split" rel="nofollow">http://php.net/split</a> :</p>
<p>Note: As of PHP 5.3.0 the regex extension is deprecated, calling this function will issue an E_DEPRECATED notice.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
