<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
		xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Web Design and Internet Marketing Greenville, SC</title>
	<atom:link href="http://www.superheromarketing.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.superheromarketing.net</link>
	<description>Web Design &#38; Internet marketing Super Heroes</description>
	<lastBuildDate>Mon, 28 Nov 2011 18:47:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<copyright>2009 </copyright>
	<managingEditor>info@superheromarketing.net (Arcimedia)</managingEditor>
	<webMaster>info@superheromarketing.net (Arcimedia)</webMaster>
	<category>Business</category>
	<ttl>1440</ttl>
	<image>
		<url>http://www.superheromarketing.net/supershowrssimg.jpg</url>
		<title>Web Design and Internet Marketing Greenville, SC</title>
		<link>http://www.superheromarketing.net</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle>Tech, business, marketing and other shenanigans.</itunes:subtitle>
	<itunes:summary>Super Hero Marketing provides marketing, business, and personal development tips and information to entrepreneurs and business owners</itunes:summary>
	<itunes:keywords>Internet marketing, social media, business, marketing, tech, technology</itunes:keywords>
	<itunes:category text="Business" />
	<itunes:category text="Technology" />
	<itunes:category text="Business">
		<itunes:category text="Management &#38; Marketing" />
	</itunes:category>
	<itunes:author>Arcimedia</itunes:author>
	<itunes:owner>
		<itunes:name>Arcimedia</itunes:name>
		<itunes:email>info@superheromarketing.net</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://www.superheromarketing.net/supershow.jpg" />
		<item>
		<title>PHP script to properly format phone numbers</title>
		<link>http://www.superheromarketing.net/2011/09/01/3915/</link>
		<comments>http://www.superheromarketing.net/2011/09/01/3915/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 14:37:45 +0000</pubDate>
		<dc:creator>Andrew Turner (aka Arcitech)</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.superheromarketing.net/?p=3915</guid>
		<description><![CDATA[<strong>Summary</strong>:  One of the biggest challenges as a programmer lies in the fact that you have to think ahead for your users so that things work seamlessly. &#160;On any site involving input fields that interact with a database, it is critical that the information be validated before going into the database, and with a bit of forethought you can make sure that the inputs are not only valid, but in a standardized format.

Consider phone numbers as an example. &#160;If you ask 10 people to write down their phone numbers, you might get several different responses:
<ul>
	<li>555.5555</li>
	<li>555-5555</li>
	<li>555.555.5555</li>
	<li>555-555-5555</li>
	<li>(555)555.5555</li>
	<li>(555)555-5555</li>
	<li>5555555</li>
	<li>5555555555</li>
	<li>1.555.555.5555</li>
	<li>1-555-555-5555</li>
	<li>1(555)555.5555</li>
	<li>1(555)555-5555</li>
</ul><!--more-->


<div>You get the idea. <br/>&#160;</div>
<div><strong>Concept</strong>:&#160; While you could write code that forces users to type in the phone number a certain way, you can also...]]></description>
			<content:encoded><![CDATA[<p><strong>Summary</strong>:  One of the biggest challenges as a programmer lies in the fact that you have to think ahead for your users so that things work seamlessly. &nbsp;On any site involving input fields that interact with a database, it is critical that the information be validated before going into the database, and with a bit of forethought you can make sure that the inputs are not only valid, but in a standardized format.</p>
<p>Consider phone numbers as an example. &nbsp;If you ask 10 people to write down their phone numbers, you might get several different responses:</p>
<ul>
<li>555.5555</li>
<li>555-5555</li>
<li>555.555.5555</li>
<li>555-555-5555</li>
<li>(555)555.5555</li>
<li>(555)555-5555</li>
<li>5555555</li>
<li>5555555555</li>
<li>1.555.555.5555</li>
<li>1-555-555-5555</li>
<li>1(555)555.5555</li>
<li>1(555)555-5555</li>
</ul>
<p><span id="more-3915"></span></p>
<div>You get the idea. <br/>&nbsp;</div>
<div><strong>Concept</strong>:&nbsp; While you could write code that forces users to type in the phone number a certain way, you can also just code better and with your user in mind to allow them to enter it however they want. &nbsp;For many local businesses, it may not be necessary at all to have an area code so why demand this?<br/></div>
<div><strong>Problem:</strong>  I searched for a long time, but could not find an open-source PHP script that would automatically format a phone number for me that would handle all these various input types. &nbsp;So I went ahead and wrote it and am posting it on here for whoever may find use in it.<br/></div>
<p><strong>Difficulty Level:</strong> Super Easy (just upload this code your the server and pass in the phone number as the only parameter)<br />
<strong>Prerequisites:</strong> To do this you must have access to a local or remote server that can process the script.<br />
<strong>Implementation:</strong></p>
<div class="codecolorer-container php mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">function</span> formatPhone<span style="color: #009900;">&#40;</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #000088;">$l</span><span style="color: #339933;">=</span><a href="http://www.php.net/strlen"><span style="color: #990000;">strlen</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$l</span><span style="color: #339933;">==</span><span style="color: #cc66cc;">8</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><span style="color: #666666; font-style: italic;">// check for ###-#### or ###.####</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/strpos"><span style="color: #990000;">strpos</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$input</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #666666; font-style: italic;">//This is redundant since I put it right back, but hey you can take and modify this however you want</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$FixedPhone</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$input</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">elseif</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/strpos"><span style="color: #990000;">strpos</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$input</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;.&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #666666; font-style: italic;">//This is important because I don't want periods in the phone numbers</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$phoneChunks</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/explode"><span style="color: #990000;">explode</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;.&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$input</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$FixedPhone</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$phoneChunks</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$phoneChunks</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//Concatenate the two pieces together</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><span style="color: #b1b100;">elseif</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$l</span><span style="color: #339933;">==</span><span style="color: #cc66cc;">7</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><span style="color: #666666; font-style: italic;">//Check for #######</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$input</span><span style="color: #339933;">=</span><a href="http://www.php.net/str_split"><span style="color: #990000;">str_split</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$FixedPhone</span><span style="color: #339933;">=</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">3</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">4</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">5</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">6</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//Concatenate digit by digit</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><span style="color: #b1b100;">elseif</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/strpos"><span style="color: #990000;">strpos</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$input</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;)&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #666666; font-style: italic;">//Check for the ')' bracket, I assume that if this exists then the first part '(' also is there.</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/strpos"><span style="color: #990000;">strpos</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$input</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$phoneChunks</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/explode"><span style="color: #990000;">explode</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$input</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">elseif</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/strpos"><span style="color: #990000;">strpos</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$input</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;.&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$phoneChunks</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/explode"><span style="color: #990000;">explode</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;.&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$input</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$phoneChunks</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span><a href="http://www.php.net/preg_replace"><span style="color: #990000;">preg_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/[^0-9()]/&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$phoneChunks</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$FixedPhone</span><span style="color: #339933;">=</span><span style="color: #000088;">$phoneChunks</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$phoneChunks</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><span style="color: #b1b100;">elseif</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$l</span><span style="color: #339933;">==</span><span style="color: #cc66cc;">10</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$input</span><span style="color: #339933;">=</span><a href="http://www.php.net/str_split"><span style="color: #990000;">str_split</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//Split and concatenate digit by digit</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$FixedPhone</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;(&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;)&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">3</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">4</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">5</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">6</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">7</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">8</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #000088;">$input</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">9</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/strpos"><span style="color: #990000;">strpos</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$input</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;.&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$input</span><span style="color: #339933;">=</span><a href="http://www.php.net/preg_replace"><span style="color: #990000;">preg_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/[^.]/&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$input</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$phoneChunks</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/explode"><span style="color: #990000;">explode</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$input</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/strlen"><span style="color: #990000;">strlen</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$phoneChunks</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">==</span><span style="color: #cc66cc;">5</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$phoneChunks</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span><a href="http://www.php.net/preg_replace"><span style="color: #990000;">preg_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/[^0-9]/&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$phoneChunks</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$FixedPhone</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;(&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$phoneChunks</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;)&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$phoneChunks</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$phoneChunks</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$FixedPhone</span><span style="color: #339933;">!=</span><span style="color: #0000ff;">&quot;()-&quot;</span><span style="color: #339933;">&amp;&amp;</span><span style="color: #000088;">$FixedPhone</span><span style="color: #339933;">!=</span><span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$FixedPhone</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
<span style="color: #009900;">&#125;</span></div></td></tr></tbody></table></div>
<p><strong>Explanation:</strong> First, it is assumed that this is for formatting an input only and NOT for validation in any way shape or form.  I already have separate validation scripts that check for malicious code and non-numeric characters.  The comments should speak for themselves.  </p>
<p>&nbsp;</p>
<p><strong>Summary: </strong>I am aware that there are probably 100 other ways to do this and that this code can be enhanced.  Also, I don&#8217;t claim that there isn&#8217;t someone out there who could manage to enter a phone number in such a way that this function won&#8217;t even work on, but at least it is a pretty good start for 99.999% of the people out there.  Do you have any questions, comments, or ideas to improve this code?  If so, drop me a line here and let me know.</p>
<div class="none"><div class="g-plusone" data-href="http://www.superheromarketing.net/2011/09/01/3915/" size="medium" count="true"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.superheromarketing.net/2011/09/01/3915/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entrepreneur Spotlight: Kamran Popkin</title>
		<link>http://www.superheromarketing.net/2011/07/25/entrepreneur-spotlight-kamran-popkin/</link>
		<comments>http://www.superheromarketing.net/2011/07/25/entrepreneur-spotlight-kamran-popkin/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 13:12:59 +0000</pubDate>
		<dc:creator>Doug Greathouse (aka Captian Arcimedia)</dc:creator>
				<category><![CDATA[Entrepreneur Spotlight]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://www.superheromarketing.net/?p=3860</guid>
		<description><![CDATA[<p style="width: 550px; margin: 10px;"><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Kamran Pompkin of Swag Club" src="http://www.superheromarketing.net/wp-content/uploads/kamran-pompkin-top-ent-spot.jpg" alt="Kamran Popkin" width="140" height="193" /></p>
<p style="width: 150px; margin: 0px 10px 10px 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">Connect with Kamran:
<a href="http://tinyurl.com/popkintwsc" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/social_balloon-05.png" alt="Kamran Pompkin on Twitter" width="64" height="64" /></a><a href="https://www.facebook.com/swagclub" target="_blank"><img style="border-style: initial; border-color: initial; padding-right: 5px; border-width: 0px;" src="http://www.superheromarketing.net/wp-content/uploads/social_balloon-14.png" alt="Kamran Pompkin on linked in" width="64" height="64" /></a></p>

<h2 style="font-size: 20px; margin-bottom: 5px;">Kamran Popkin</h2>
<h3 style="margin-top: -15px; line-height: 20px;">Creative Director at Swag Club</h3>
<p style="width: 550px; margin: 10px;">As a true bio for Kamran cannot be found online and he is reluctant to give one, I have decided to tell...]]></description>
			<content:encoded><![CDATA[<p style="width: 550px; margin: 10px;"><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Kamran Pompkin of Swag Club" src="http://www.superheromarketing.net/wp-content/uploads/kamran-pompkin-top-ent-spot.jpg" alt="kamran pompkin top ent spot Entrepreneur Spotlight: Kamran Popkin" width="140" height="193" /></p>
<p style="width: 150px; margin: 0px 10px 10px 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">Connect with Kamran:<br />
<a href="http://tinyurl.com/popkintwsc" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/social_balloon-05.png" alt="social balloon 05 Entrepreneur Spotlight: Kamran Popkin" width="64" height="64" title="Entrepreneur Spotlight: Kamran Popkin" /></a><a href="https://www.facebook.com/swagclub" target="_blank"><img style="border-style: initial; border-color: initial; padding-right: 5px; border-width: 0px;" src="http://www.superheromarketing.net/wp-content/uploads/social_balloon-14.png" alt="social balloon 14 Entrepreneur Spotlight: Kamran Popkin" width="64" height="64" title="Entrepreneur Spotlight: Kamran Popkin" /></a></p>
<h2 style="font-size: 20px; margin-bottom: 5px;">Kamran Popkin</h2>
<h3 style="margin-top: -15px; line-height: 20px;">Creative Director at Swag Club</h3>
<p style="width: 550px; margin: 10px;">As a true bio for Kamran cannot be found online and he is reluctant to give one, I have decided to tell you what I know and think about Kamran Pompkin. I think of him as a mad toy making genius. He has oodles and oodles of creativity. Look up &#8220;out of the box thinker&#8221; in the dictionary, I don&#8217;t really think they put whole phrases in the dictionary, but if they did there to the left would be Kamran&#8217;s smiling mug. He is also one of the most unique individuals you will ever meet and it does not seem like an act &#8211; it is truly his persona. Although I am not in his inner circle (those otherwise known as instigators) he makes me feel like I need to be, as if I am missing out on something, Which I am sure I am. He does this without seeming like an elitist because the people in this inner circle are not all CEO&#8217;s, Heads of States, and such, just cool cats that he likes and likes what they do and vice versa. That may be totally wrong, how am I truly to know what the criteria of becoming an instigator is.</p>
<p style="width: 550px; margin: 10px;">Kamran has taken an industry of &#8220;koozie mongers&#8221; &#8211; his words not mine &#8211; and carved out something extraordinary and special. If you really want to know the value of Kamran and Swag Club seek out one of their clients. They will tell you the story of how Kamran has helped tell a story with their brand (koozies don&#8217;t normally help tell stories) and provided them with something that truly felt original and fit their brand perfectly.</p>
<p><span id="more-3860"></span><br />
<!--</p>
<div style="width: 550px; height: 250px;">
<p><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Kamran Popkin of Swag Club" src="http://www.superheromarketing.net/wp-content/uploads/kamran-pompkin-top-ent-spot.jpg" alt="kamran pompkin top ent spot Entrepreneur Spotlight: Kamran Popkin" width="140" height="193" /></p>
<div style="width: 250px; margin: 0px 10px 10px 10px; float: left; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">
<h2>Kamran Popkin</h2>
<h3>Creative Director at Swag Club</h3>
<p>Connect with Kamran:<br />
<a href="http://tinyurl.com/popkintwsc" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/social_balloon-05.png" alt="social balloon 05 Entrepreneur Spotlight: Kamran Popkin" width="64" height="64" title="Entrepreneur Spotlight: Kamran Popkin" /></a> <a href="http://www.linkedin.com/in/kamranpopkin" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/social_balloon-34.png" alt="social balloon 34 Entrepreneur Spotlight: Kamran Popkin" width="64" height="64" title="Entrepreneur Spotlight: Kamran Popkin" /></a><a href="tinyurl.com/popkin" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/social_balloon-14.png" alt="social balloon 14 Entrepreneur Spotlight: Kamran Popkin" width="64" height="64" title="Entrepreneur Spotlight: Kamran Popkin" /></a></p>
</div>
</div>
<p>&#8211;><br />
<!--more--></p>
<hr />
<div style="width: 550px; margin: 10px;">
<div style="border-top: 5px solid #0D3457; border-left: 5px solid #0D3457; border-right: 5px solid #0D3457; width: 550px;"><object width="550" height="335" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://blip.tv/play/h4hIgsncLgA" /><param name="wmode" value="transparent" /><param name="allowscriptaccess" value="always" /><param name="allowfullscreen" value="true" /><embed width="550" height="335" type="application/x-shockwave-flash" src="http://blip.tv/play/h4hIgsncLgA" wmode="transparent" allowscriptaccess="always" allowfullscreen="true" /></object></div>
</div>
<p>&nbsp;</p>
<div style="width: 520px; height: 500px; text-align: left; padding: 5px; margin-left: 10px; border: 15px solid #0a2945; margin-top: -45px;">
<hr />
<div style="width: 520px; margin: 0 auto; clear: both; padding-bottom: 10px; height: 50px;">
<h3><a href="http://swagc.tumblr.com/" target="_blank"><img class="alignleft size-thumbnail wp-image-3113" style="margin: 10px; border: 0;" src="http://www.superheromarketing.net/wp-content/uploads/swag-club-logo-1.jpg" alt="swag club logo 1 Entrepreneur Spotlight: Kamran Popkin"  title="Entrepreneur Spotlight: Kamran Popkin" /></a></h3>
<p>Swag Club put logos on cool things- sometimes off the shelf, sometimes custom built. And there are an infinity of cool things to pull you to &#8216;wow&#8217;. Infinity! And beyond!<br />
Their pledge to you is this- they will give you anything humanly possible, including cayenne pepper hot sauce, Kamran and his team are going to ask a few questions first. They want to ensure that their products are part of a project or program that really integrates into your overall message.<br />
They will never &#8216;just write up an order&#8217; cause it was easy. They care too much to serve you so lightly.<br />
Call them. 864.316.6263</p>
<p>Swag Club is a mysterious and uniquely creative company. To learn more about them follow the interwebs &#8211; you may or may not find anything about them.</p>
<p><a href="http://twitter.com/swagclub" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/social_balloon-05.png" alt="social balloon 05 Entrepreneur Spotlight: Kamran Popkin"  title="Entrepreneur Spotlight: Kamran Popkin" /></a><a href="https://www.facebook.com/swagclub" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/social_balloon-14.png" alt="social balloon 14 Entrepreneur Spotlight: Kamran Popkin"  title="Entrepreneur Spotlight: Kamran Popkin" /></a> <a href="http://swagc.tumblr.com/" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/swag-club-icon.png" alt="swag club icon Entrepreneur Spotlight: Kamran Popkin"  title="Entrepreneur Spotlight: Kamran Popkin" /></a></p>
</div>
</div>
<div class="none"><div class="g-plusone" data-href="http://www.superheromarketing.net/2011/07/25/entrepreneur-spotlight-kamran-popkin/" size="medium" count="true"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.superheromarketing.net/2011/07/25/entrepreneur-spotlight-kamran-popkin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Entrepreneur Spotlight: Russ Davis &#8211; Sandler Training</title>
		<link>http://www.superheromarketing.net/2011/05/31/entrepreneur-spotlight-russ-davis-sandler-training/</link>
		<comments>http://www.superheromarketing.net/2011/05/31/entrepreneur-spotlight-russ-davis-sandler-training/#comments</comments>
		<pubDate>Tue, 31 May 2011 13:22:26 +0000</pubDate>
		<dc:creator>Doug Greathouse (aka Captian Arcimedia)</dc:creator>
				<category><![CDATA[Entrepreneur Spotlight]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://www.superheromarketing.net/?p=3831</guid>
		<description><![CDATA[<p style="width: 550px; margin: 10px;"><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Russ Davis of Sandler Training" src="http://www.superheromarketing.net/wp-content/uploads/russ-davis-top-ent-spot.jpg" alt="Russ Davis" width="144" height="198" /></p>
<p style="width: 150px; margin: 0px 10px 10px 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">Connect with Russ:
<a href="http://twitter.com/rsdavis412" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/twitter1.png" alt="Russ Davis on Twitter" width="43" height="55" /></a> <a href="http://www.linkedin.com/pub/russ-davis/0/388/a35"  target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/linkedin2.png" alt="Russ Davis on linked in" width="43" height="55" /></a></p>

<h2 style="font-size: 20px; margin-bottom: 5px;">Russ Davis</h2>
<h3 style="margin-top: -15px; line-height: 20px;">Principal at Sandler Training in Greenville, Sc</h3>
<p style="width: 550px; margin: 10px;">Innovative and effective training presented by award-winning Sandler trainer Russ Davis puts his clients a step ahead of the competition,...]]></description>
			<content:encoded><![CDATA[<p style="width: 550px; margin: 10px;"><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Russ Davis of Sandler Training" src="http://www.superheromarketing.net/wp-content/uploads/russ-davis-top-ent-spot.jpg" alt="russ davis top ent spot Entrepreneur Spotlight: Russ Davis   Sandler Training" width="144" height="198" /></p>
<p style="width: 150px; margin: 0px 10px 10px 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">Connect with Russ:<br />
<a href="http://twitter.com/rsdavis412" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/twitter1.png" alt="twitter1 Entrepreneur Spotlight: Russ Davis   Sandler Training" width="43" height="55" title="Entrepreneur Spotlight: Russ Davis   Sandler Training" /></a> <a href="http://www.linkedin.com/pub/russ-davis/0/388/a35"  target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/linkedin2.png" alt="linkedin2 Entrepreneur Spotlight: Russ Davis   Sandler Training" width="43" height="55" title="Entrepreneur Spotlight: Russ Davis   Sandler Training" /></a></p>
<h2 style="font-size: 20px; margin-bottom: 5px;">Russ Davis</h2>
<h3 style="margin-top: -15px; line-height: 20px;">Principal at Sandler Training in Greenville, Sc</h3>
<p style="width: 550px; margin: 10px;">Innovative and effective training presented by award-winning Sandler trainer Russ Davis puts his clients a step ahead of the competition, and provides them with the path to reach their professional goals. We at the Sandler Sales Institute® are committed to offering our clients revolutionary training through our powerful public and private in-house training programs.</p>
<p style="width: 550px; margin: 10px;">Russ Davis, recently opened a Sandler Sales Institute® office in the Greenville Spartanburg area. He has years of management and business development experience, most recently he has spent seven years associated with the Sandler Sales Institute in Pittsburgh, PA. His experience along with the proven Sandler training methodology produces exceptional results.<br />
Russ was CEO of an environmental services firm until 1991, when he founded another environmental firm in Pennsylvania. That firm was sold to Waste Management Inc. in 1997. He has a BS from the University of Delaware and an MBA from the University of Pittsburgh.</p>
<p><span id="more-3831"></span></p>
<hr />
<div style="width: 550px; margin: 10px;">
<div style="border-top: 5px solid #0D3457; border-left: 5px solid #0D3457; border-right: 5px solid #0D3457; width: 550px;"><embed type="application/x-shockwave-flash" width="550" height="335" src="http://blip.tv/play/h4hIgr7bRgA" allowfullscreen="true" allowscriptaccess="always" wmode="transparent"></embed></div>
</div>
<p>&nbsp;</p>
<div style="width: 520px; height: 580px; text-align: left; padding: 5px; margin-left: 10px; border: 15px solid #0a2945; margin-top: -45px;">
<div style="width: 520px; margin: 0 auto; clear: both; padding-bottom: 10px; height: 180px;">
<h3>Connect &#8211; Follow &#8211; Engage</h3>
<h3>Russ Davis</h3>
<p><a href="http://twitter.com/rsdavis412" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/twitter.png" alt="twitter Entrepreneur Spotlight: Russ Davis   Sandler Training"  title="Entrepreneur Spotlight: Russ Davis   Sandler Training" /></a><a href="http://www.linkedin.com/pub/russ-davis/0/388/a35"  target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/linkedin2.png" alt="linkedin2 Entrepreneur Spotlight: Russ Davis   Sandler Training"  title="Entrepreneur Spotlight: Russ Davis   Sandler Training" /></a></p>
</div>
<hr />
<div style="width: 520px; margin: 0 auto; clear: both; padding-bottom: 10px; height: 50px;">
<h3><a href="http://rdavis.sandler.com"  target="_blank"><img class="alignleft size-thumbnail wp-image-3113" style="margin: 10px;" src="http://www.superheromarketing.net/wp-content/uploads/Logo_SandlerTraining2.jpg" alt="Logo SandlerTraining2 Entrepreneur Spotlight: Russ Davis   Sandler Training" width="139" height="88" title="Entrepreneur Spotlight: Russ Davis   Sandler Training" /></a></h3>
<p>From our local training facilities and through private in-house programs, the Sandler Sales Institute provides professional training and unique sales and sales management solutions. Each solution is uniquely designed to address the challenges faced by company owners, salespeople, sales managers and other professionals who are charged with business development.<br />
Explore our site and learn about our programs. We think you&#8217;ll agree that the Sandler Selling System generates power through reinforcement &#8211; and hope you&#8217;ll take the first steps to finding out how it can work for you.</p>
<p>“You won’t fail because we won’t let you.”</p>
<p><a href="http://twitter.com/sandlertraining" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/twitter.png" alt="twitter Entrepreneur Spotlight: Russ Davis   Sandler Training"  title="Entrepreneur Spotlight: Russ Davis   Sandler Training" /></a><a href="http://www.youtube.com/SandlerWorldwide" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/youtube.png" alt="youtube Entrepreneur Spotlight: Russ Davis   Sandler Training"  title="Entrepreneur Spotlight: Russ Davis   Sandler Training" /></a><a href="http://www.linkedin.com/company/sandler-training"  target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/linkedin2.png" alt="linkedin2 Entrepreneur Spotlight: Russ Davis   Sandler Training"  title="Entrepreneur Spotlight: Russ Davis   Sandler Training" /></a><a href="rdavis.sandler.com"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/sandler-training-icon.jpg" alt="sandler training icon Entrepreneur Spotlight: Russ Davis   Sandler Training"  title="Entrepreneur Spotlight: Russ Davis   Sandler Training" /></a></p>
</div>
</div>
<div class="none"><div class="g-plusone" data-href="http://www.superheromarketing.net/2011/05/31/entrepreneur-spotlight-russ-davis-sandler-training/" size="medium" count="true"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.superheromarketing.net/2011/05/31/entrepreneur-spotlight-russ-davis-sandler-training/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entrepreneur Spotlight: Phil Yanov</title>
		<link>http://www.superheromarketing.net/2011/05/23/entrepreneur-spotlight-phil-yanov/</link>
		<comments>http://www.superheromarketing.net/2011/05/23/entrepreneur-spotlight-phil-yanov/#comments</comments>
		<pubDate>Mon, 23 May 2011 16:41:40 +0000</pubDate>
		<dc:creator>Doug Greathouse (aka Captian Arcimedia)</dc:creator>
				<category><![CDATA[Entrepreneur Spotlight]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://www.superheromarketing.net/?p=3811</guid>
		<description><![CDATA[<p style="width: 550px; margin: 10px;"><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Jim Rohrer" src="http://www.superheromarketing.net/wp-content/uploads/Phil-Yanov-Bio-Pic.jpg" alt="Jim Rohrer" width="144" height="198" /></p>
<p style="width: 150px; margin: 0px 10px 10px 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">Connect with Phil:
<a href="http://twitter.com/thinkhammer" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/twitter1.png" alt="Phil Yanov on Twitter" width="43" height="55" /></a> <a href="http://www.linkedin.com/in/philyanov"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/linkedin2.png" alt="Phil Yanov on linked in" width="43" height="55" /></a><a href="http://www.facebook.com/phil.yanov"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/facebook.png" alt="Phil Yanov on Facebook" width="43" height="55" /></a></p>

<h2 style="font-size: 20px; margin-bottom: 5px;">Phil Yanov</h2>
<h3 style="margin-top: -15px; line-height: 20px;">Founder of Tech After Five and President Of The GSA Technology Council</h3>
<p style="width: 550px; margin: 10px;">Phil Yanov is a writer,...]]></description>
			<content:encoded><![CDATA[<p style="width: 550px; margin: 10px;"><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Jim Rohrer" src="http://www.superheromarketing.net/wp-content/uploads/Phil-Yanov-Bio-Pic.jpg" alt="Phil Yanov Bio Pic Entrepreneur Spotlight: Phil Yanov" width="144" height="198" /></p>
<p style="width: 150px; margin: 0px 10px 10px 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">Connect with Phil:<br />
<a href="http://twitter.com/thinkhammer" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/twitter1.png" alt="twitter1 Entrepreneur Spotlight: Phil Yanov" width="43" height="55" title="Entrepreneur Spotlight: Phil Yanov" /></a> <a href="http://www.linkedin.com/in/philyanov"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/linkedin2.png" alt="linkedin2 Entrepreneur Spotlight: Phil Yanov" width="43" height="55" title="Entrepreneur Spotlight: Phil Yanov" /></a><a href="http://www.facebook.com/phil.yanov"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/facebook.png" alt="facebook Entrepreneur Spotlight: Phil Yanov" width="43" height="55" title="Entrepreneur Spotlight: Phil Yanov" /></a></p>
<h2 style="font-size: 20px; margin-bottom: 5px;">Phil Yanov</h2>
<h3 style="margin-top: -15px; line-height: 20px;">Founder of Tech After Five and President Of The GSA Technology Council</h3>
<p style="width: 550px; margin: 10px;">Phil Yanov is a writer, columnist, speaker, podcaster and occasional radio guy who has spent his whole life working in technology. He has been an invited professor at the university level. He has spoken to and inspired packed auditoriums of technology professionals and is the Founder and President of the GSA Technology Council as well as the IT Leadership Council.</p>
<p style="width: 550px; margin: 10px;">He discusses technology issues in his Gears and Gadgets column and may be heard on the Your Day Radio Program which is carried across South Carolina on the NPR affiliate stations.</p>
<p>&nbsp;</p>
<ul>Phil Yanov has been active in the following organizations:&nbsp;</p>
<li>2008, 2009 – Innoventure Entrepreneur Coaching Committee Chair</li>
<li>2008 – SBDC Regional Advisory Committee</li>
<li>2007-2009 – SBDC Advisory Committee</li>
<li>2006-2008 – Conference Director for SC Statewide CIO conference</li>
<li>2005 – Public Relations Chair for the Innoventure Capital Conference</li>
<li>2005 – Technology Chair for the Upstate Council on Entrepreneurial Development</li>
</ul>
<p><span id="more-3811"></span></p>
<hr />
<div style="width: 550px; margin: 10px;">
<div style="border-top: 5px solid #0D3457; border-left: 5px solid #0D3457; border-right: 5px solid #0D3457; width: 550px;"><embed src="http://blip.tv/play/h4hIgr2PVwA" type="application/x-shockwave-flash" width="550" height="335" wmode="transparent" allowscriptaccess="always" allowfullscreen="true" ></embed></div>
</div>
<p>&nbsp;</p>
<div style="width: 520px; height: 730px; text-align: left; padding: 5px; margin-left: 10px; border: 15px solid #0a2945; margin-top: -45px;">
<div style="width: 520px; margin: 0 auto; clear: both; padding-bottom: 10px; height: 180px;">
<h3>Connect &#8211; Follow &#8211; Engage</h3>
<h3>Phil Yanov</h3>
<p><a href="http://twitter.com/thinkhammer" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/twitter.png" alt="twitter Entrepreneur Spotlight: Phil Yanov"  title="Entrepreneur Spotlight: Phil Yanov" /></a><a href="http://www.linkedin.com/in/philyanov"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/linkedin2.png" alt="linkedin2 Entrepreneur Spotlight: Phil Yanov"  title="Entrepreneur Spotlight: Phil Yanov" /></a><a href="http://www.facebook.com/phil.yanov" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/facebook.png" alt="facebook Entrepreneur Spotlight: Phil Yanov"  title="Entrepreneur Spotlight: Phil Yanov" /></a><a href="http://www.youtube.com/user/ThinkHammer" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/youtube.png" alt="youtube Entrepreneur Spotlight: Phil Yanov"  title="Entrepreneur Spotlight: Phil Yanov" /></a><a href="http://www.thinkhammer.com/" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/Thinkhammer-Icon.jpg" alt="Thinkhammer Icon Entrepreneur Spotlight: Phil Yanov"  title="Entrepreneur Spotlight: Phil Yanov" /></a></p>
</div>
<hr />
<div style="width: 520px; margin: 0 auto; clear: both; padding-bottom: 10px; height: 200px;">
<h3><a href="http://techafterfive.com/"><img class="alignleft size-thumbnail wp-image-3113" style="margin: 10px;" src="http://www.superheromarketing.net/wp-content/uploads/TechAfterFive-logo.png" alt="TechAfterFive logo Entrepreneur Spotlight: Phil Yanov" width="139" height="88" title="Entrepreneur Spotlight: Phil Yanov" /></a></h3>
<p>Tech After Five is a series of free to attend, sponsor supported, professional networking events for tech professionals and entrepreneurs and the people who can help them reach their goals.</p>
<p><a href="http://www.facebook.com/TechAfterFive" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/facebook.png" alt="facebook Entrepreneur Spotlight: Phil Yanov"  title="Entrepreneur Spotlight: Phil Yanov" /></a><a href="http://twitter.com/TechAfterFive" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/twitter.png" alt="twitter Entrepreneur Spotlight: Phil Yanov"  title="Entrepreneur Spotlight: Phil Yanov" /></a><a href="http://www.youtube.com/TechAfterFive" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/youtube.png" alt="youtube Entrepreneur Spotlight: Phil Yanov"  title="Entrepreneur Spotlight: Phil Yanov" /></a><a href="http://www.linkedin.com/groups?gid=2944843&amp;mostPopular=&amp;trk=tyah"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/linkedin2.png" alt="linkedin2 Entrepreneur Spotlight: Phil Yanov"  title="Entrepreneur Spotlight: Phil Yanov" /></a><a href="http://techafterfive.com/"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/Techafter5-Icon.jpg" alt="Techafter5 Icon Entrepreneur Spotlight: Phil Yanov"  title="Entrepreneur Spotlight: Phil Yanov" /></a></p>
</div>
<hr />
<div style="width: 520px; margin: 0 auto; clear: both;">
<h3><a href="http://www.gsatc.org"><img class="alignleft size-thumbnail wp-image-3113" style="margin-top: 30px; margin-bottom: 30px; margin-left: 10px; margin-right: 10px;" src="http://www.superheromarketing.net/wp-content/uploads/logo-gsatc.png" alt="logo gsatc Entrepreneur Spotlight: Phil Yanov" width="153" height="64" title="Entrepreneur Spotlight: Phil Yanov" /></a></h3>
<p>The GSA Technology Council provides networking, education, business development, and community service opportunities to career minded technology professionals and high-tech entrepreneurs through its newsletter, meetings, job fair, and community training programs. Founded in 2002, the council has grown to over 13,000 subscribers.</p>
<p><a href="http://www.facebook.com/GSATC" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/facebook.png" alt="facebook Entrepreneur Spotlight: Phil Yanov"  title="Entrepreneur Spotlight: Phil Yanov" /></a><a href="http://twitter.com/GSATC" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/twitter.png" alt="twitter Entrepreneur Spotlight: Phil Yanov"  title="Entrepreneur Spotlight: Phil Yanov" /></a><a href="http://www.youtube.com/user/buzzwingcash" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/youtube.png" alt="youtube Entrepreneur Spotlight: Phil Yanov"  title="Entrepreneur Spotlight: Phil Yanov" /></a><a href="http://www.linkedin.com/company/12208?trk=tyah"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/linkedin2.png" alt="linkedin2 Entrepreneur Spotlight: Phil Yanov"  title="Entrepreneur Spotlight: Phil Yanov" /></a><a href="http://www.gsatc.org/join/"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/GSATC-Icon.jpg" alt="GSATC Icon Entrepreneur Spotlight: Phil Yanov"  title="Entrepreneur Spotlight: Phil Yanov" /></a></p>
</div>
</div>
<div class="none"><div class="g-plusone" data-href="http://www.superheromarketing.net/2011/05/23/entrepreneur-spotlight-phil-yanov/" size="medium" count="true"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.superheromarketing.net/2011/05/23/entrepreneur-spotlight-phil-yanov/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Entrepreneur Spotlight: Jim Rohrer</title>
		<link>http://www.superheromarketing.net/2011/05/16/entrepreneur-spotlight-jim-rohrer/</link>
		<comments>http://www.superheromarketing.net/2011/05/16/entrepreneur-spotlight-jim-rohrer/#comments</comments>
		<pubDate>Mon, 16 May 2011 13:13:14 +0000</pubDate>
		<dc:creator>Doug Greathouse (aka Captian Arcimedia)</dc:creator>
				<category><![CDATA[Entrepreneur Spotlight]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[business contacts]]></category>
		<category><![CDATA[entrepreneur]]></category>
		<category><![CDATA[jim rohrer]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[small business loan]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[success]]></category>
		<category><![CDATA[wing cash]]></category>

		<guid isPermaLink="false">http://www.superheromarketing.net/?p=3782</guid>
		<description><![CDATA[<p style="width: 550px; margin: 10px;"><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Jim Rohrer" src="http://www.superheromarketing.net/wp-content/uploads/jimrohrer-wingcash.jpg" alt="Jim Rohrer" width="144" height="198" /></p>
<p style="width: 150px; margin: 0px 10px 10px 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">Connect with Jim:
<a href="http://twitter.com/jimrohrer57" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/twitter1.png" alt="Jim Rohrer on Twitter" width="43" height="55" /></a> <a href="http://www.linkedin.com/in/jimrohrer"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/linkedin2.png" alt="linked in icon" width="43" height="55" /></a><a href="https://wingcash.com/p/5931039950"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/wingcash.jpg" alt="linked in icon" width="43" height="55" /></a></p>

<h2 style="font-size: 20px; margin-bottom: 5px;">Jim Rohrer</h2>
<h3 style="margin-top: -15px; line-height: 20px;">Banking Executive, Business Consultant, and Artist</h3>
<p style="width: 550px; margin: 10px;">Jim Rohrer is a Tuscan polymath: scientist, mathematician, engineer, inventor, anatomist, painter, sculptor, architect,...]]></description>
			<content:encoded><![CDATA[<p style="width: 550px; margin: 10px;"><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Jim Rohrer" src="http://www.superheromarketing.net/wp-content/uploads/jimrohrer-wingcash.jpg" alt="jimrohrer wingcash Entrepreneur Spotlight: Jim Rohrer" width="144" height="198" /></p>
<p style="width: 150px; margin: 0px 10px 10px 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">Connect with Jim:<br />
<a href="http://twitter.com/jimrohrer57" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/twitter1.png" alt="twitter1 Entrepreneur Spotlight: Jim Rohrer" width="43" height="55" title="Entrepreneur Spotlight: Jim Rohrer" /></a> <a href="http://www.linkedin.com/in/jimrohrer"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/linkedin2.png" alt="linkedin2 Entrepreneur Spotlight: Jim Rohrer" width="43" height="55" title="Entrepreneur Spotlight: Jim Rohrer" /></a><a href="https://wingcash.com/p/5931039950"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/wingcash.jpg" alt="wingcash Entrepreneur Spotlight: Jim Rohrer" width="43" height="55" title="Entrepreneur Spotlight: Jim Rohrer" /></a></p>
<h2 style="font-size: 20px; margin-bottom: 5px;">Jim Rohrer</h2>
<h3 style="margin-top: -15px; line-height: 20px;">Banking Executive, Business Consultant, and Artist</h3>
<p style="width: 550px; margin: 10px;">Jim Rohrer is a Tuscan polymath: scientist, mathematician, engineer, inventor, anatomist, painter, sculptor, architect, botanist, musician and writer. Born at Vinci in the region of Florence, the illegitimate son of a notary, Piero da Vinci, and a peasant girl, Caterina, Jim was educated in the studio of the renowned Florentine painter, Verrocchio. Much of his earlier working life was spent in the service of Ludovico il Moro in Milan where several of his major works were created. He also worked in Rome, Bologna and Venice, spending his final years in France at the home given him by King François I.</p>
<p style="width: 550px; margin: 10px;">Jim has often been described as the archetype of the &#8220;Renaissance man&#8221; or universal genius, a man whose seemingly infinite curiosity was equalled only by his powers of invention. He is widely considered to be one of the greatest painters of all time and perhaps the most diversely talented person ever.</p>
<p style="width: 550px; margin: 10px;"><em>*Some or all of the above may or may not be true &#8211; it is the bio taken from Jim&#8217;s website.</em><br />
<br/><br />
Website:<a href="http://www.jim-rohrer.com"> jim-rohrer.com</a></p>
<p><span id="more-3782"></span></p>
<hr />
<div style="width: 550px; margin: 10px;">
<div style="border-top: 5px solid #0D3457; border-left: 5px solid #0D3457; border-right: 5px solid #0D3457; width: 550px;"><embed type="application/x-shockwave-flash" width="550" height="335" src="http://blip.tv/play/h4hIgruMUQA" allowfullscreen="true" allowscriptaccess="always"></embed></div>
</div>
<p>&nbsp;</p>
<div style="width: 520px; height: 580px; text-align: left; padding: 5px; margin-left: 10px; border: 15px solid #0a2945; margin-top: -45px;">
<p><a href="https://wingcash.com/"><img class="alignleft size-thumbnail wp-image-3113" style="margin: 10px;" src="http://www.superheromarketing.net/wp-content/uploads/wingcash-logo.png" alt="wingcash logo Entrepreneur Spotlight: Jim Rohrer"  title="Entrepreneur Spotlight: Jim Rohrer" /></a></p>
<p>WingCash is a web payment platform that allows individuals and businesses to pay one another with cash in the form of electronic coins and bills. They refer to a single coin or bill represented online, regardless of denomination, as a WingCash Note, which is similar to a bank-note.</p>
<p>WingCash Notes are issued by bank partners, not by the United States Federal Reserve. This is possible because WingCash Notes do not represent additional currency, but rather, existing currency held at the bank. WingCash Notes represent and serve a similar purpose on the Internet as physical currency.<br />
<a href="https://wingcash.com/">You can learn more about Wingcash on their website </a></p>
<div style="width: 520px; margin: 0 auto; clear: both;">
<h3>Connect &#8211; Follow &#8211; Engage</h3>
<h3>Jim Rohrer</h3>
<p><a href="http://twitter.com/jimrohrer57" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/twitter.png" alt="twitter Entrepreneur Spotlight: Jim Rohrer"  title="Entrepreneur Spotlight: Jim Rohrer" /></a><a href="http://www.linkedin.com/in/jimrohrer"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/linkedin2.png" alt="linkedin2 Entrepreneur Spotlight: Jim Rohrer"  title="Entrepreneur Spotlight: Jim Rohrer" /></a><a href="https://wingcash.com/p/5931039950" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/wingcash.jpg" alt="wingcash Entrepreneur Spotlight: Jim Rohrer"  title="Entrepreneur Spotlight: Jim Rohrer" /></a></p>
</div>
<div style="width: 520px; margin: 0 auto; clear: both;">
<h3>Wing Cash</h3>
<p><a href="https://www.facebook.com/wingcash" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/facebook.png" alt="facebook Entrepreneur Spotlight: Jim Rohrer"  title="Entrepreneur Spotlight: Jim Rohrer" /></a><a href="http://twitter.com/WingCash" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/twitter.png" alt="twitter Entrepreneur Spotlight: Jim Rohrer"  title="Entrepreneur Spotlight: Jim Rohrer" /></a><a href="http://www.youtube.com/user/buzzwingcash" target="_blank"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/youtube.png" alt="youtube Entrepreneur Spotlight: Jim Rohrer"  title="Entrepreneur Spotlight: Jim Rohrer" /></a><a href="http://www.linkedin.com/company/12208?trk=tyah"><img style="border: 0; float: left; padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/linkedin2.png" alt="linkedin2 Entrepreneur Spotlight: Jim Rohrer"  title="Entrepreneur Spotlight: Jim Rohrer" /></a></p>
</div>
</div>
<div class="none"><div class="g-plusone" data-href="http://www.superheromarketing.net/2011/05/16/entrepreneur-spotlight-jim-rohrer/" size="medium" count="true"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.superheromarketing.net/2011/05/16/entrepreneur-spotlight-jim-rohrer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Entrepreneur Spotlight: Maxim Williams &#8211; Bon Secour St Francis Health Systems</title>
		<link>http://www.superheromarketing.net/2011/05/04/entrepreneur-spotlight-maxim-williams-bon-secour-st-francis-health-systems/</link>
		<comments>http://www.superheromarketing.net/2011/05/04/entrepreneur-spotlight-maxim-williams-bon-secour-st-francis-health-systems/#comments</comments>
		<pubDate>Wed, 04 May 2011 22:02:16 +0000</pubDate>
		<dc:creator>Doug Greathouse (aka Captian Arcimedia)</dc:creator>
				<category><![CDATA[Entrepreneur Spotlight]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://www.superheromarketing.net/?p=3723</guid>
		<description><![CDATA[<p style="width: 550px; margin: 10px;"><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Trey Pennington" src="http://www.superheromarketing.net/wp-content/uploads/maximwilliamsheadshot.jpg" alt="Maxim Williams" width="144" height="198" /></p>
<p style="width: 150px; margin: 0px 10px 10px 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">Connect with Maxim:
<a href="http://twitter.com/CoCreateHealth" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/twitter1.png" alt="Maxim Williams on Twitter" width="43" height="55" /></a> <a href="https://www.facebook.com/LiberateCoCreateTransform" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/facebook1.png" alt="Bon Secours St Francis on Facebook" width="43" height="55" /></a><a href="http://www.linkedin.com/in/maximwilliams"><img src="http://www.superheromarketing.net/wp-content/uploads/linkedin2.png" style="border:0; float:left; padding-right:5px" alt="linked in icon" width="43" height="55"></a></p>

<h2 style="font-size: 20px;margin-bottom:5px">Maxim Williams</h2>
<h3 style="margin-top: -15px; line-height:20px">Community Relationship Building Director
Bon Secour St Francis Health Systems</h3>
<p style="width: 550px; margin: 10px;">Maxim, a former entrepreneur and consultant while living in sunny San Diego, decided in 2008 to...]]></description>
			<content:encoded><![CDATA[<p style="width: 550px; margin: 10px;"><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Trey Pennington" src="http://www.superheromarketing.net/wp-content/uploads/maximwilliamsheadshot.jpg" alt="maximwilliamsheadshot Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems" width="144" height="198" /></p>
<p style="width: 150px; margin: 0px 10px 10px 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">Connect with Maxim:<br />
<a href="http://twitter.com/CoCreateHealth" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/twitter1.png" alt="twitter1 Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems" width="43" height="55" title="Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems" /></a> <a href="https://www.facebook.com/LiberateCoCreateTransform" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/facebook1.png" alt="facebook1 Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems" width="43" height="55" title="Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems" /></a><a href="http://www.linkedin.com/in/maximwilliams"><img src="http://www.superheromarketing.net/wp-content/uploads/linkedin2.png" style="border:0; float:left; padding-right:5px" alt="linkedin2 Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems" width="43" height="55" title="Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems" /></a></p>
<h2 style="font-size: 20px;margin-bottom:5px">Maxim Williams</h2>
<h3 style="margin-top: -15px; line-height:20px">Community Relationship Building Director<br />
Bon Secour St Francis Health Systems</h3>
<p style="width: 550px; margin: 10px;">Maxim, a former entrepreneur and consultant while living in sunny San Diego, decided in 2008 to refocus his skills and talents towards improving community through &#8216;social&#8217; entrepreneurship, community relationship building, and an integrative point of view.  He is the Director of Community Relationship Building at Bon Secours St. Francis Health System in Greenville South Carolina.  Locally he spearheads the exciting transformation happening in the historic Sterling neighborhood, where he has seeded many &#8220;firsts&#8221; for Greenville and has quickly gained local, regional, and national recognition for his work.</p>
<p>Website:<a href="http://www.stfrancishealth.org/communityrelationships"> stfrancishealth.org/communityrelationships</a> or<br />
<a href="http://www.bshsi.org/hci.sc">bshsi.org/hci.sc</a></p>
<p><span id="more-3723"></span></p>
<hr />
<div style="width: 550px; margin: 10px;">
<div style="border-top: 5px solid #0D3457; border-left: 5px solid #0D3457; border-right: 5px solid #0D3457; width: 550px;"><embed src="http://blip.tv/play/h4hIgrjUOwA" type="application/x-shockwave-flash" width="550" height="335" allowscriptaccess="always" allowfullscreen="true"></embed></div>
</div>
<p></a></p>
<p><a href="http://www.bshsi.org/hci.sc"></a></p>
<div style="width: 520px; height:270px; text-align: left; padding: 5px; margin-left: 10px; border: 15px solid #0a2945; margin-top: -45px;"><a href="http://www.bshsi.org/hci.sc"> </a><a href="http://www.bshsi.org/hci.sc"></a><a href="http://hso.bonsecours.com/healthy-communities-our-healthy-communities-south-carolina-sterling-greenville-our-healthy-community.html"><img class="alignleft size-thumbnail wp-image-3113" style="margin: 10px;" src="http://www.superheromarketing.net/wp-content/uploads/StFrancisLogo2.jpg" alt="StFrancisLogo2 Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems" width="212" height="95" title="Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems" /></a>&nbsp;</p>
<p>To learn more about Bon Secours St Francis Health Systems involvement in Greenville Communities visit <a href="http://hso.bonsecours.com/healthy-communities-our-healthy-communities-south-carolina-sterling-greenville-our-healthy-community.html">Bon Secours St Francis Health Systems &#8211; Our Healthy Communities </a></p>
<div style="width:280px; margin:0 auto">
<h3>Connect &#8211; Follow &#8211; Engage</h3>
<p><a href="https://www.facebook.com/LiberateCoCreateTransform" target="_blank"><img src="http://www.superheromarketing.net/wp-content/uploads/facebook.png" style="border:0; float:left; padding-right:5px" alt="facebook Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems"  title="Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems" /></a><a href="http://twitter.com/CoCreateHealth" target="_blank"><img src="http://www.superheromarketing.net/wp-content/uploads/twitter.png" style="border:0; float:left; padding-right:5px" alt="twitter Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems"  title="Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems" /></a><a href="http://www.youtube.com/BonSecoursHealth" target="_blank"><img src="http://www.superheromarketing.net/wp-content/uploads/youtube.png" style="border:0; float:left;padding-right:5px" alt="youtube Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems"  title="Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems" /></a><a href="http://www.linkedin.com/company/12208?trk=tyah"><img src="http://www.superheromarketing.net/wp-content/uploads/linkedin2.png" style="border:0; float:left; padding-right:5px" alt="linkedin2 Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems"  title="Entrepreneur Spotlight: Maxim Williams   Bon Secour St Francis Health Systems" /></a>
</div>
</div>
<div class="none"><div class="g-plusone" data-href="http://www.superheromarketing.net/2011/05/04/entrepreneur-spotlight-maxim-williams-bon-secour-st-francis-health-systems/" size="medium" count="true"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.superheromarketing.net/2011/05/04/entrepreneur-spotlight-maxim-williams-bon-secour-st-francis-health-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entrepreneur Spotlight: Barry Chandler &#8211; The Bar Blogger</title>
		<link>http://www.superheromarketing.net/2011/04/20/entrepreneur-spotlight-barry-chandler-bar-blogger/</link>
		<comments>http://www.superheromarketing.net/2011/04/20/entrepreneur-spotlight-barry-chandler-bar-blogger/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 15:54:25 +0000</pubDate>
		<dc:creator>Doug Greathouse (aka Captian Arcimedia)</dc:creator>
				<category><![CDATA[Entrepreneur Spotlight]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[advertising costs]]></category>
		<category><![CDATA[barry chandler]]></category>
		<category><![CDATA[beer bars]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[favorite marketing]]></category>
		<category><![CDATA[hospitality operations]]></category>
		<category><![CDATA[loyal community]]></category>
		<category><![CDATA[marketing agency]]></category>
		<category><![CDATA[marketing campaign]]></category>
		<category><![CDATA[media awards]]></category>
		<category><![CDATA[media marketing]]></category>
		<category><![CDATA[mobile device]]></category>
		<category><![CDATA[traditional advertising]]></category>

		<guid isPermaLink="false">http://www.superheromarketing.net/?p=3667</guid>
		<description><![CDATA[<p style="width: 550px; margin: 10px;"><a rel="http://www.thebarblogger.com/" href="http://www.thebarblogger.com/" target="_blank"><img class="size-full wp-image-2932 alignleft" style="margin-bottom: 20px; border: 5px solid #0a2945;" title="Barry Bishoff - Happy Hour Foods" src="http://www.superheromarketing.net/wp-content/uploads/Barry_Chandler_The_Bar_Blogger.jpg" alt="Barry Chandler - The Bar Blogger" width="140" height="193" /></a></p>
<p style="width: 150px; margin: 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 70px;">Connect with Barry:
<a href="http://twitter.com/thebarblogger" target="_blank"><img style="padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/twitter1.png" alt="" width="43" height="55" /></a> <a href="http://facebook.com/thebarblogger" target="_blank"><img src="http://www.superheromarketing.net/wp-content/uploads/facebook1.png" alt="" width="43" height="55" /></a></p>

<h2 style="font-size: 20px;">Barry Chandler</h2>
<h3 style="margin-top: -15px;">Founder of Interactive Hospitality</h3>
<p style="width: 550px; margin: 10px;"><strong>Interactive Hospitality</strong> is an online marketing agency for bars, restaurants and hotels. Barry started working with bars and restaurants in 2004 when he founded <strong>Barkeeper.ie</strong>, an online management toolkit used by more than 800 Irish businesses to help manage their hospitality...]]></description>
			<content:encoded><![CDATA[<p style="width: 550px; margin: 10px;"><a rel="http://www.thebarblogger.com/" href="http://www.thebarblogger.com/" target="_blank"><img class="size-full wp-image-2932 alignleft" style="margin-bottom: 20px; border: 5px solid #0a2945;" title="Barry Bishoff - Happy Hour Foods" src="http://www.superheromarketing.net/wp-content/uploads/Barry_Chandler_The_Bar_Blogger.jpg" alt="Barry Chandler The Bar Blogger Entrepreneur Spotlight: Barry Chandler   The Bar Blogger" width="140" height="193" /></a></p>
<p style="width: 150px; margin: 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 70px;">Connect with Barry:<br />
<a href="http://twitter.com/thebarblogger" target="_blank"><img style="padding-right: 5px;" src="http://www.superheromarketing.net/wp-content/uploads/twitter1.png" alt="twitter1 Entrepreneur Spotlight: Barry Chandler   The Bar Blogger" width="43" height="55" title="Entrepreneur Spotlight: Barry Chandler   The Bar Blogger" /></a> <a href="http://facebook.com/thebarblogger" target="_blank"><img src="http://www.superheromarketing.net/wp-content/uploads/facebook1.png" alt="facebook1 Entrepreneur Spotlight: Barry Chandler   The Bar Blogger" width="43" height="55" title="Entrepreneur Spotlight: Barry Chandler   The Bar Blogger" /></a></p>
<h2 style="font-size: 20px;">Barry Chandler</h2>
<h3 style="margin-top: -15px;">Founder of Interactive Hospitality</h3>
<p style="width: 550px; margin: 10px;"><strong>Interactive Hospitality</strong> is an online marketing agency for bars, restaurants and hotels. Barry started working with bars and restaurants in 2004 when he founded <strong>Barkeeper.ie</strong>, an online management toolkit used by more than 800 Irish businesses to help manage their hospitality operations and was voted Ireland’s <strong>“Best Business to Business Website”</strong> at the 2007 Digital Media Awards. This was followed by the founding of Barkeeper.co.uk for the UK market, <strong><a title="ManagYourBar.com" href="http://manageyourbar.com/" target="_blank">ManageYourBar.com</a></strong> for the US market as well as <strong><a title="TheBarBlogger.com" href="http://thebarblogger.com" target="_blank">TheBarBlogger.com</a></strong>, a free online resource that helps bars attract more clients using social media.More than 2500 businesses have used his services to achieve higher results and establish the procedures necessary for an efficient operation. He advises owner operated businesses as well as multi-unit chains how to leverage online marketing and social channels to attract and keep a loyal community of customers without the reliance on traditional advertising costs.</p>
<p><span id="more-3667"></span></p>
<hr />
<div style="width: 550px; margin: 10px;">
<p style="width: 550px; margin: 10px;">The following is an interview we did with Barry about beer, bars, and social media marketing.</p>
<p class="questions"><span style="color: #900000; font-weight: bold; font-size: 16px;"><span style="color: #003366; font-weight: bold;">SHM:</span></span>What do you see as the most common mistakes bar &amp; restaurants make in regards to their website?</p>
<p style="padding-left: 30px;"><span style="color: #900000; font-weight: bold; font-size: 16px;">Barry: </span>One common mistake is forgetting that a website only needs opening times, contact information and a menu. Everything else is just fluff. Another sin is a website built in archaic flash technology that cannot be viewed on a mobile device, or one that starts blasting music every time you open the site.</p>
<p class="questions"><span style="color: #003366; font-weight: bold;"><span style="color: #900000; font-weight: bold; font-size: 16px;"><span style="color: #003366; font-weight: bold;">SHM:</span></span> </span> What is your favorite marketing campaign for a restaurant or bar you have helped implement or seen?</p>
<p style="padding-left: 30px;"><span style="color: #900000; font-weight: bold; font-size: 16px;">Barry: </span>We&#8217;re working with a restaurant at the moment, Schmidt&#8217;s, that has a fanatical customer base who order their famous German sausages from all over the U.S. It was the customers themselves who began taking pictures of the Bahama Mama sausages when they arrived and posting them on the Facebook Wall. That gave us the idea to include a card in every package that says &#8220;Sending your Bahama Mamas packing from Columbus, OH all the way to ___________&#8221;, encouraging customers to take a photo and share it on Facebook. .</p>
<p class="questions"><span style="color: #003366; font-weight: bold;"><span style="color: #900000; font-weight: bold; font-size: 16px;"><span style="color: #003366; font-weight: bold;">SHM:</span></span></span>What is your favorite blog post you have written?</p>
<p style="padding-left: 30px;"><span style="color: #900000; font-weight: bold; font-size: 16px;">Barry: </span>My favorite blog post was &#8220;<a title="The most disgusting thing you can be given in a bar" href="http://www.superheromarketing.net/wp-content/uploads/barbloggerlogo.jpg" target="_blank">The most disgusting thing you can be given in a bar</a>&#8221; because it really struck a nerve. In fact, I still shudder when I think about it.</p>
<p class="questions"><span style="color: #003366; font-weight: bold;"><span style="color: #900000; font-weight: bold; font-size: 16px;"><span style="color: #003366; font-weight: bold;">SHM:</span></span> </span> What are your thoughts on restaurants and bars participating in sites like Groupon and Living Social?</p>
<p style="padding-left: 30px;"><span style="color: #900000; font-weight: bold; font-size: 16px;">Barry: </span>I would normally only recommend their usage by new bars and restaurants looking to reach an audience of customers who have never heard of them. Most bars and restaurants are unprepared for the influx of customers. Staff are often unhappy they are not receiving the same tips, and reports show poor retention of new customers. Bars and restaurants often make the mistake of promoting the offer to their current customer base, who would be coming in anyway without the deal. This means they are suddenly losing revenue that was there before the deal.</p>
<p class="questions"><span style="color: #900000; font-weight: bold; font-size: 16px;"><span style="color: #003366; font-weight: bold;">SHM: </span></span> What restaurant or bar do you feel is doing a great job in terms of how it uses social media?</p>
<p style="padding-left: 30px;"><span style="color: #900000; font-weight: bold; font-size: 16px;">Barry: </span>Adoption rates are increasing as more and more bar owners realize the poor return on traditional advertising and the obvious benefits of building a community around their bar online. Although we don&#8217;t work with them directly, we love what Joe Sorge does with <a title="AJ Bombers in Milwaukee" href="http://www.ajbombers.com/" target="_blank">A.J. Bombers in Milwaukee</a>. I think he can be credited with showing just what social media can do when put in the right hands.</p>
<p class="questions"><span style="color: #000080;"><span style="color: #900000; font-weight: bold; font-size: 16px;"><span style="color: #003366; font-weight: bold;"><a href="http://www.superheromarketing.net/wp-content/uploads/Magners.jpg"><img class="alignright size-thumbnail wp-image-3676" style="margin: 5px;" title="Magners" src="http://www.superheromarketing.net/wp-content/uploads/Magners-146x220.jpg" alt="Magners 146x220 Entrepreneur Spotlight: Barry Chandler   The Bar Blogger" width="88" height="132" /></a>SHM:</span></span> </span> What is your favorite beer?</p>
<p style="padding-left: 30px;"><span style="color: #900000; font-weight: bold; font-size: 16px;">Barry: </span><a title="Magners Irish Cider" href="http://magners.com/" target="_blank"> Magners Irish Cider</a>, which is becoming more widely available in the U.S. now. It&#8217;s a great summer drink.</p>
<p class="questions"><span style="color: #900000; font-weight: bold; font-size: 16px;"><span style="color: #003366; font-weight: bold;">SHM:</span></span> Marketing aside, do you have a favorite bar or restaurant?</p>
<p style="padding-left: 30px;"><span style="color: #900000; font-weight: bold; font-size: 16px;">Barry: </span>I love <a title="The Rossi in Columbus, OH" href="http://www.rossibarandkitchen.com/" target="_blank">The Rossi in Columbus, OH</a>. It is an old art deco neighborhood bar with great food and intimate surroundings.</p>
<p class="questions"><span style="color: #003366; font-weight: bold;"><span style="color: #900000; font-weight: bold; font-size: 16px;"><span style="color: #003366; font-weight: bold;">SHM:</span></span></span> What in your opinion are the ingredients to &#8220;wow&#8221; service?</p>
<p style="padding-left: 30px;"><span style="color: #900000; font-weight: bold; font-size: 16px;">Barry: </span>Value, at any price point (with a little sprinkle of salt and pepper).</p>
<p class="questions"><span style="color: #003366; font-weight: bold;"><span style="color: #900000; font-weight: bold; font-size: 16px;"><span style="color: #003366; font-weight: bold;">SHM:</span></span> </span> What is your take on the effectiveness of mobile marketing for bars or restaurants?</p>
<p style="padding-left: 30px;"><span style="color: #900000; font-weight: bold; font-size: 16px;">Barry: </span>Like anything, it depends on the business and needs to be tested. If two bars on the same street try something, it might work for one and not the other. With so many new technologies coming along, everything needs to be tested.</p>
<p class="questions"><span style="color: #003366; font-weight: bold;"><span style="color: #900000; font-weight: bold; font-size: 16px;"><span style="color: #003366; font-weight: bold;">SHM: </span></span></span>Where are you currently Mayor of on foursquare and have they given you any perks?</p>
<p style="padding-left: 30px;"><span style="color: #900000; font-weight: bold; font-size: 16px;">Barry: </span>Actually, I haven&#8217;t been lucky enough to claim a mayorship, which is strange considering the amount of promotion I do. Somehow, I&#8217;ve never been able to snag the title from other loyal Foursquare users.</p>
<p class="questions"><span style="color: #003366; font-weight: bold;"><span style="color: #900000; font-weight: bold; font-size: 16px;"><span style="color: #003366; font-weight: bold;">SHM: </span></span></span>One of your recent blog posts was titled &#8211; <a title="5 Reasons Social Media may never work for your bar or restaurant" href="http://www.thebarblogger.com/5-reasons-social-media-might-not-work-for-your-bar-or-restaurant/" target="_blank">5 reasons Social Media may never work for your bar or restaurant </a>- What are a couple of those reasons?</p>
<p style="padding-left: 30px;"><span style="color: #900000; font-weight: bold; font-size: 16px;">Barry: </span>Social media won&#8217;t work for a bar or restaurant if their business isn&#8217;t social. Social media builds an online community, but how can that be possible if you don&#8217;t have one offline? It also won&#8217;t work if you seek short term gains. It takes time to build a community, but there is a profitable return if you are in it for the long haul.</p>
</div>
<div style="width: 550px; border: 5px solid #0A2945; padding: 5px; margin: 10px;">
<p style="padding-left: 5px;"><img class="alignleft size-thumbnail wp-image-2801" style="margin: 5px;" title="Happy Hour Foods Logo" src="http://www.superheromarketing.net/wp-content/uploads/barbloggerlogo.jpg" alt="barbloggerlogo Entrepreneur Spotlight: Barry Chandler   The Bar Blogger" width="223" height="116" /><span style="font-size: medium;">To learn more about Barry and Interactive Hospitality visit <a href="http://www.thebarblogger.com/">thebarblogger.com</a></span></p>
<p style="padding-left: 5px;">Please Feel free to leave a comment or question for us or Barry in the comments and we would be glad to respond.</p>
</div>
<div class="none"><div class="g-plusone" data-href="http://www.superheromarketing.net/2011/04/20/entrepreneur-spotlight-barry-chandler-bar-blogger/" size="medium" count="true"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.superheromarketing.net/2011/04/20/entrepreneur-spotlight-barry-chandler-bar-blogger/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Entrepreneur Spotlight: Trey Pennington Part 3</title>
		<link>http://www.superheromarketing.net/2011/04/18/entrepreneur-spotlight-trey-pennington-part/</link>
		<comments>http://www.superheromarketing.net/2011/04/18/entrepreneur-spotlight-trey-pennington-part/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 12:48:20 +0000</pubDate>
		<dc:creator>Doug Greathouse (aka Captian Arcimedia)</dc:creator>
				<category><![CDATA[Entrepreneur Spotlight]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[business contacts]]></category>
		<category><![CDATA[business owner]]></category>
		<category><![CDATA[entrepreneur]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Internet marketing]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[pennington group]]></category>
		<category><![CDATA[professional marketer]]></category>
		<category><![CDATA[radio show]]></category>
		<category><![CDATA[relationships]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[spotlight]]></category>
		<category><![CDATA[storytelling]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[web design firm]]></category>
		<category><![CDATA[web designer]]></category>

		<guid isPermaLink="false">http://www.superheromarketing.net/?p=3679</guid>
		<description><![CDATA[<p style="width: 550px; margin: 10px;"><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Trey Pennington" src="http://www.superheromarketing.net/wp-content/uploads/treypenningtonheadshotentspot.jpg" alt="Trey Pennington" width="144" height="198" /></p>
<p style="width: 150px; margin: 0px 10px 10px 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">Connect with Trey Pennington:
<a href="http://twitter.com/treypennington" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/twitter1.png" alt="Trey Pennington on Twitter" width="43" height="55" /></a> <a href="http://www.facebook.com/drtreypennington" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/facebook1.png" alt="Trey Pennington Facebook" width="43" height="55" /></a></p>

<h2 style="font-size: 20px;">Trey Pennington</h2>
<h3 style="margin-top: -15px;">Marketing pro, speaker, author, and dreamer.</h3>
<p style="width: 550px; margin: 10px;">This is Part Three of our interview with Trey Pennington. Trey is a well respected professional marketer who travels the world speaking on social media and the power of storytelling. If you...]]></description>
			<content:encoded><![CDATA[<div class='series_toc'><h3>Table of contents for Trey pennington Interview</h3><ol><li><a href='http://www.superheromarketing.net/2011/04/08/entrepreneur-spotlight-trey-pennington-part-1/' title='Entrepreneur Spotlight: Trey Pennington Part 1'>Entrepreneur Spotlight: Trey Pennington Part 1</a></li><li><a href='http://www.superheromarketing.net/2011/04/14/entrepreneur-spotlight-trey-pennington-part-2/' title='Entrepreneur Spotlight: Trey Pennington Part 2'>Entrepreneur Spotlight: Trey Pennington Part 2</a></li><li>Entrepreneur Spotlight: Trey Pennington Part 3</li></ol></div> <p style="width: 550px; margin: 10px;"><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Trey Pennington" src="http://www.superheromarketing.net/wp-content/uploads/treypenningtonheadshotentspot.jpg" alt="treypenningtonheadshotentspot Entrepreneur Spotlight: Trey Pennington Part 3" width="144" height="198" /></p>
<p style="width: 150px; margin: 0px 10px 10px 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">Connect with Trey Pennington:<br />
<a href="http://twitter.com/treypennington" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/twitter1.png" alt="twitter1 Entrepreneur Spotlight: Trey Pennington Part 3" width="43" height="55" title="Entrepreneur Spotlight: Trey Pennington Part 3" /></a> <a href="http://www.facebook.com/drtreypennington" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/facebook1.png" alt="facebook1 Entrepreneur Spotlight: Trey Pennington Part 3" width="43" height="55" title="Entrepreneur Spotlight: Trey Pennington Part 3" /></a></p>
<h2 style="font-size: 20px;">Trey Pennington</h2>
<h3 style="margin-top: -15px;">Marketing pro, speaker, author, and dreamer.</h3>
<p style="width: 550px; margin: 10px;">This is Part Three of our interview with Trey Pennington. Trey is a well respected professional marketer who travels the world speaking on social media and the power of storytelling. If you have not seen</p>
<p><span id="more-3679"></span></p>
<hr />
<div style="width: 550px; margin: 10px;">
<p>This is the third of a three part series with Trey Pennington.<br />
Follow <a href="http://twitter.com/arcimedia">arcimedia on twitter</a> for notifications of further releases.</p>
<div style="border-top: 5px solid #0D3457; border-left: 5px solid #0D3457; border-right: 5px solid #0D3457; width: 550px;"><object width="550" height="339"><param name="movie" value="http://www.youtube.com/v/dHSI3PB4pHk?fs=1&amp;hl=en_US&amp;hd=1" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="550" height="339" src="http://www.youtube.com/v/dHSI3PB4pHk?fs=1&amp;hl=en_US&amp;hd=1" allowfullscreen="true" allowscriptaccess="always"></embed></object></div>
</div>
<div style="width: 520px; text-align: left; padding: 5px; margin-left: 10px; border: 15px solid #0a2945; margin-top: -15px;">
<p><a href="http://treypennington.com"><img class="alignleft size-thumbnail wp-image-3113" style="margin: 10px;" title="Trey Pennington Marketing Pro" src="http://www.superheromarketing.net/wp-content/uploads/promopic-trey.jpg" alt="promopic trey Entrepreneur Spotlight: Trey Pennington Part 3" width="105" height="157" /></a></p>
<p>Below are listed several ways to learn more about and get connected with Trey Pennington.<br />
<a href="http://www.blogtalkradio.com/openforbusiness">Catch His Radio Show on Blog Talk Radio</a><br />
<a href="http://treypennington.com/">Trey&#8217;s Blog</a><br />
<a href="http://thepenningtongroup.com/">The Pennington Group</a></p>
<p>Keep up with <a href="http://www.facebook.com/group.php?gid=42980322582">Social Media Club Greenville</a> and<br />
<a href="http://socialstoryconference.com/">The Social Story Conference<br />
</a></p>
<p><a href="http://socialstoryconference.com/"> </a><a href="http://socialstoryconference.com/"></a><br />
Please feel free to comment or ask questions below as we are sure Trey will follow the conversation here and reply.</p>
</div>
<div class="none"><div class="g-plusone" data-href="http://www.superheromarketing.net/2011/04/18/entrepreneur-spotlight-trey-pennington-part/" size="medium" count="true"></div></div> <div class='series_links'><a href='http://www.superheromarketing.net/2011/04/14/entrepreneur-spotlight-trey-pennington-part-2/' title='Entrepreneur Spotlight: Trey Pennington Part 2'>Previous in series</a> </div>]]></content:encoded>
			<wfw:commentRss>http://www.superheromarketing.net/2011/04/18/entrepreneur-spotlight-trey-pennington-part/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entrepreneur Spotlight: Trey Pennington Part 2</title>
		<link>http://www.superheromarketing.net/2011/04/14/entrepreneur-spotlight-trey-pennington-part-2/</link>
		<comments>http://www.superheromarketing.net/2011/04/14/entrepreneur-spotlight-trey-pennington-part-2/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 01:39:39 +0000</pubDate>
		<dc:creator>Doug Greathouse (aka Captian Arcimedia)</dc:creator>
				<category><![CDATA[Entrepreneur Spotlight]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[entrepreneur]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[media marketing]]></category>
		<category><![CDATA[page rank]]></category>
		<category><![CDATA[pennington group]]></category>
		<category><![CDATA[professional marketer]]></category>
		<category><![CDATA[radio show]]></category>
		<category><![CDATA[roi]]></category>
		<category><![CDATA[spotlight]]></category>
		<category><![CDATA[storytelling]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.superheromarketing.net/?p=3659</guid>
		<description><![CDATA[<p style="width: 550px; margin: 10px;"><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Trey Pennington" src="http://www.superheromarketing.net/wp-content/uploads/treypenningtonheadshotentspot.jpg" alt="Trey Pennington" width="144" height="198" /></p>
<p style="width: 150px; margin: 0px 10px 10px 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">Connect with Trey Pennington:
<a href="http://twitter.com/treypennington" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/twitter1.png" alt="Trey Pennington on Twitter" width="43" height="55" /></a> <a href="http://www.facebook.com/drtreypennington" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/facebook1.png" alt="Trey Pennington Facebook" width="43" height="55" /></a></p>

<h2 style="font-size: 20px;">Trey Pennington</h2>
<h3 style="margin-top: -15px;">Marketing pro, speaker, author, and dreamer.</h3>
<p style="width: 550px; margin: 10px;">This is Part Two of our interview with Trey Pennington. Trey is a well respected professional marketer who travels the world speaking on social media and the power of storytelling. If you...]]></description>
			<content:encoded><![CDATA[<div class='series_toc'><h3>Table of contents for Trey pennington Interview</h3><ol><li><a href='http://www.superheromarketing.net/2011/04/08/entrepreneur-spotlight-trey-pennington-part-1/' title='Entrepreneur Spotlight: Trey Pennington Part 1'>Entrepreneur Spotlight: Trey Pennington Part 1</a></li><li>Entrepreneur Spotlight: Trey Pennington Part 2</li><li><a href='http://www.superheromarketing.net/2011/04/18/entrepreneur-spotlight-trey-pennington-part/' title='Entrepreneur Spotlight: Trey Pennington Part 3'>Entrepreneur Spotlight: Trey Pennington Part 3</a></li></ol></div> <p style="width: 550px; margin: 10px;"><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Trey Pennington" src="http://www.superheromarketing.net/wp-content/uploads/treypenningtonheadshotentspot.jpg" alt="treypenningtonheadshotentspot Entrepreneur Spotlight: Trey Pennington Part 2" width="144" height="198" /></p>
<p style="width: 150px; margin: 0px 10px 10px 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">Connect with Trey Pennington:<br />
<a href="http://twitter.com/treypennington" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/twitter1.png" alt="twitter1 Entrepreneur Spotlight: Trey Pennington Part 2" width="43" height="55" title="Entrepreneur Spotlight: Trey Pennington Part 2" /></a> <a href="http://www.facebook.com/drtreypennington" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/facebook1.png" alt="facebook1 Entrepreneur Spotlight: Trey Pennington Part 2" width="43" height="55" title="Entrepreneur Spotlight: Trey Pennington Part 2" /></a></p>
<h2 style="font-size: 20px;">Trey Pennington</h2>
<h3 style="margin-top: -15px;">Marketing pro, speaker, author, and dreamer.</h3>
<p style="width: 550px; margin: 10px;">This is Part Two of our interview with Trey Pennington. Trey is a well respected professional marketer who travels the world speaking on social media and the power of storytelling. If you have not seen <a href="http://www.superheromarketing.net/2011/04/08/entrepreneur-spotlight-trey-pennington-part-1/">Part One you can find it here.</a></p>
<p><span id="more-3659"></span></p>
<hr />
<div style="width: 550px; margin: 10px;">
<p>This is the second of a three part series with Trey Pennington.<br />
Follow <a href="http://twitter.com/arcimedia">arcimedia on twitter</a> for notifications of further releases.</p>
<div style="border-top: 5px solid #0D3457; border-left: 5px solid #0D3457; border-right: 5px solid #0D3457; width: 550px;"><embed type="application/x-shockwave-flash" width="550" height="335" src="http://blip.tv/play/h4hIgrPIfwA" allowfullscreen="true" allowscriptaccess="always"></embed></div>
</div>
<div style="width: 520px; text-align: left; padding: 5px; margin-left: 10px; border: 15px solid #0a2945; margin-top: -15px;">
<p><a href="http://treypennington.com"><img class="alignleft size-thumbnail wp-image-3113" style="margin: 10px;" title="Trey Pennington Marketing Pro" src="http://www.superheromarketing.net/wp-content/uploads/promopic-trey.jpg" alt="promopic trey Entrepreneur Spotlight: Trey Pennington Part 2" width="105" height="157" /></a></p>
<p>Below are listed several ways to learn more about and get connected with Trey Pennington.<br />
<a href="http://www.blogtalkradio.com/openforbusiness">Catch His Radio Show on Blog Talk Radio</a><br />
<a href="http://treypennington.com/">Trey&#8217;s Blog</a><br />
<a href="http://thepenningtongroup.com/">The Pennington Group</a></p>
<p>Keep up with <a href="http://www.facebook.com/group.php?gid=42980322582">Social Media Club Greenville</a> and<br />
<a href="http://socialstoryconference.com/">The Social Story Conference<br />
</a></p>
<p><a href="http://socialstoryconference.com/"> </a><a href="http://socialstoryconference.com/"></a><br />
Please feel free to comment or ask questions below as we are sure Trey will follow the conversation here and reply.</p>
</div>
<div class="none"><div class="g-plusone" data-href="http://www.superheromarketing.net/2011/04/14/entrepreneur-spotlight-trey-pennington-part-2/" size="medium" count="true"></div></div> <div class='series_links'><a href='http://www.superheromarketing.net/2011/04/08/entrepreneur-spotlight-trey-pennington-part-1/' title='Entrepreneur Spotlight: Trey Pennington Part 1'>Previous in series</a> <a href='http://www.superheromarketing.net/2011/04/18/entrepreneur-spotlight-trey-pennington-part/' title='Entrepreneur Spotlight: Trey Pennington Part 3'>Next in series</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.superheromarketing.net/2011/04/14/entrepreneur-spotlight-trey-pennington-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entrepreneur Spotlight: Trey Pennington Part 1</title>
		<link>http://www.superheromarketing.net/2011/04/08/entrepreneur-spotlight-trey-pennington-part-1/</link>
		<comments>http://www.superheromarketing.net/2011/04/08/entrepreneur-spotlight-trey-pennington-part-1/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 13:40:00 +0000</pubDate>
		<dc:creator>Doug Greathouse (aka Captian Arcimedia)</dc:creator>
				<category><![CDATA[Entrepreneur Spotlight]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[business contacts]]></category>
		<category><![CDATA[business owner]]></category>
		<category><![CDATA[champion]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[cost per click]]></category>
		<category><![CDATA[entrepreneur]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[financial success]]></category>
		<category><![CDATA[goals]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Internet marketing]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[media marketing]]></category>
		<category><![CDATA[page rank]]></category>
		<category><![CDATA[relationships]]></category>
		<category><![CDATA[roi]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[Search Engine Optimizatoin]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[seo specialist]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[success]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[web design firm]]></category>
		<category><![CDATA[web designer]]></category>

		<guid isPermaLink="false">http://www.superheromarketing.net/?p=3630</guid>
		<description><![CDATA[<p style="width: 550px; margin: 10px;"><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Trey Pennington" src="http://www.superheromarketing.net/wp-content/uploads/treypenningtonheadshotentspot.jpg" alt="Trey Pennington" width="144" height="198" /></p>
<p style="width: 150px; margin: 0px 10px 10px 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">Connect with Trey:
<a href="http://twitter.com/treypennington" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/twitter1.png" alt="Trey Pennington on Twitter" width="43" height="55" /></a> <a href="http://www.facebook.com/drtreypennington" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/facebook1.png" alt="Trey Pennington Facebook" width="43" height="55" /></a></p>
<h2 style="font-size: 20px;">Trey Pennington</h2>
<h3 style="margin-top: -15px;">Marketing pro, speaker, author, and dreamer.</h3>
<p style="width: 550px; margin: 10px;">Trey Pennington is a marketing pro, business connector, and storyteller for business who’s passion is helping business owners uncover their hidden treasures and put them to work. He uses social media to connect...]]></description>
			<content:encoded><![CDATA[<div class='series_toc'><h3>Table of contents for Trey pennington Interview</h3><ol><li>Entrepreneur Spotlight: Trey Pennington Part 1</li><li><a href='http://www.superheromarketing.net/2011/04/14/entrepreneur-spotlight-trey-pennington-part-2/' title='Entrepreneur Spotlight: Trey Pennington Part 2'>Entrepreneur Spotlight: Trey Pennington Part 2</a></li><li><a href='http://www.superheromarketing.net/2011/04/18/entrepreneur-spotlight-trey-pennington-part/' title='Entrepreneur Spotlight: Trey Pennington Part 3'>Entrepreneur Spotlight: Trey Pennington Part 3</a></li></ol></div> <p style="width: 550px; margin: 10px;"><img class="alignleft size-full wp-image-3080" style="margin: 10px 10px 10px 10px; border: 5px solid #0D3457;" title="Trey Pennington" src="http://www.superheromarketing.net/wp-content/uploads/treypenningtonheadshotentspot.jpg" alt="treypenningtonheadshotentspot Entrepreneur Spotlight: Trey Pennington Part 1" width="144" height="198" /></p>
<p style="width: 150px; margin: 0px 10px 10px 10px; float: right; border-left: 1px solid #ccc; padding-left: 5px; margin-top: 5px; height: 100px;">Connect with Trey:<br />
<a href="http://twitter.com/treypennington" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/twitter1.png" alt="twitter1 Entrepreneur Spotlight: Trey Pennington Part 1" width="43" height="55" title="Entrepreneur Spotlight: Trey Pennington Part 1" /></a> <a href="http://www.facebook.com/drtreypennington" target="_blank"><img style="padding-right: 5px; float: left;" src="http://www.superheromarketing.net/wp-content/uploads/facebook1.png" alt="facebook1 Entrepreneur Spotlight: Trey Pennington Part 1" width="43" height="55" title="Entrepreneur Spotlight: Trey Pennington Part 1" /></a></p>
<h2 style="font-size: 20px;">Trey Pennington</h2>
<h3 style="margin-top: -15px;">Marketing pro, speaker, author, and dreamer.</h3>
<p style="width: 550px; margin: 10px;">Trey Pennington is a marketing pro, business connector, and storyteller for business who’s passion is helping business owners uncover their hidden treasures and put them to work. He uses social media to connect with audiences around the globe. HubSpot ranks his Facebook profile as one of the most influential in the world and his Twitter profile in the top 0.01%. He&#8217;s helped start ten Social Media Clubs in the US, UK, and Australia and routinely speaks to groups about using social media to make connections and have conversations leading to commerce.</p>
<p><span id="more-3630"></span></p>
<hr />
<div style="width: 550px; margin: 10px;">
<p>This is the first of a three part series with Trey Pennington.<br />
Follow <a href="http://twitter.com/arcimedia">arcimedia on twitter</a> for notifications of further releases.</p>
<div style="border-top: 5px solid #0D3457; border-left: 5px solid #0D3457; border-right: 5px solid #0D3457; width: 550px;"><embed type="application/x-shockwave-flash" width="550" height="335" src="http://blip.tv/play/h4hIgrKFAAA" allowscriptaccess="always" allowfullscreen="true"></embed></div>
</div>
<div style="width: 520px; text-align: left; padding: 5px; margin-left: 10px; border: 15px solid #0a2945; margin-top: -15px;">
<p><a href="http://treypennington.com"><img class="alignleft size-thumbnail wp-image-3113" style="margin: 10px;" title="Trey Pennington Marketing Pro" src="http://www.superheromarketing.net/wp-content/uploads/promopic-trey.jpg" alt="promopic trey Entrepreneur Spotlight: Trey Pennington Part 1" width="105" height="157" /></a></p>
<p>Below are listed several ways to learn more about and get connected with Trey Pennington.<br />
<a href="http://www.blogtalkradio.com/openforbusiness">Catch His Radio Show on Blog Talk Radio</a><br />
<a href="http://treypennington.com/">Trey&#8217;s Blog</a><br />
<a href="http://thepenningtongroup.com/">The Pennington Group</a></p>
<p>Keep up with <a href="http://www.facebook.com/group.php?gid=42980322582">Social Media Club Greenville</a> and<br />
<a href="http://socialstoryconference.com/">The Social Story Conference<br />
</a></p>
<p><a href="http://socialstoryconference.com/"> </a><a href="http://socialstoryconference.com/"></a><br />
Please feel free to comment or ask questions below as we are sure Trey will follow the conversation here and reply.</p>
</div>
<p><img class="BLUEKAI" src="http://tags.bluekai.com/site/2132" alt=" Entrepreneur Spotlight: Trey Pennington Part 1"  title="Entrepreneur Spotlight: Trey Pennington Part 1" /></p>
<div class="none"><div class="g-plusone" data-href="http://www.superheromarketing.net/2011/04/08/entrepreneur-spotlight-trey-pennington-part-1/" size="medium" count="true"></div></div> <div class='series_links'> <a href='http://www.superheromarketing.net/2011/04/14/entrepreneur-spotlight-trey-pennington-part-2/' title='Entrepreneur Spotlight: Trey Pennington Part 2'>Next in series</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.superheromarketing.net/2011/04/08/entrepreneur-spotlight-trey-pennington-part-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 3.249 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-06 02:30:50 -->

