<?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/"
	>

<channel>
	<title>Why It Was &#187; Twitter</title>
	<atom:link href="http://whyitwas.com/tag/twitter/feed/" rel="self" type="application/rss+xml" />
	<link>http://whyitwas.com</link>
	<description>Web and Marketing</description>
	<lastBuildDate>Sun, 27 Dec 2009 12:34:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Post to Twitter from your site using PHP</title>
		<link>http://whyitwas.com/2009/01/31/post-to-twitter-from-your-site-using-php/</link>
		<comments>http://whyitwas.com/2009/01/31/post-to-twitter-from-your-site-using-php/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 01:07:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[About the Site]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.whyitwas.com/?p=105</guid>
		<description><![CDATA[You want to post something to you Twitter account? For instance you might want your followers to know when your site has been used and what the result was e.g. you site might want to announce each time someone signs up for your service.
The answer is real easy, use cURL and PHP to update your [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_112" class="wp-caption alignright" style="width: 133px"><img class="size-full wp-image-112" title="twitter-256x256" src="http://www.whyitwas.com/wp-content/uploads/2009/01/twitter-256x256.png" alt="Twitter" width="123" height="123" /><p class="wp-caption-text">Twitter</p></div>
<p>You want to post something to you Twitter account? For instance you might want your followers to know when your site has been used and what the result was e.g. you site might want to announce each time someone signs up for your service.</p>
<p>The answer is real easy, use cURL and PHP to update your profile. For <a title="Feed RSS feeds to Twitter" href="http://www.rsstotwitter.com" target="_blank">RSS to Twitter</a> we use the below script.</p>
<h1>PHP to Twitter Script</h1>
<p>To use the below script call the postToTwitter function with a 140 charter message (if it is over that Twitter will truncate it for you), the user-name (or email) you want to use and the password.</p>
<pre lang="php">
<?php
function postToTwitter($message,$username,$password)
{
$url = 'http://twitter.com/statuses/update.xml';
$curl_handle = curl_init();
curl_setopt($curl_handle, CURLOPT_URL, "$url");
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl_handle, CURLOPT_POST, 1);
curl_setopt($curl_handle, CURLOPT_POSTFIELDS, "status=$message");
curl_setopt($curl_handle, CURLOPT_USERPWD, "$username:$password");
$buffer = curl_exec($curl_handle);
curl_close($curl_handle);
}
</php>
</pre>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-sexy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://whyitwas.com/2009/01/31/post-to-twitter-from-your-site-using-php/&amp;title=Post+to+Twitter+from+your+site+using+PHP" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://whyitwas.com/2009/01/31/post-to-twitter-from-your-site-using-php/&amp;title=Post+to+Twitter+from+your+site+using+PHP" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://whyitwas.com/2009/01/31/post-to-twitter-from-your-site-using-php/&amp;title=Post+to+Twitter+from+your+site+using+PHP" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://whyitwas.com/2009/01/31/post-to-twitter-from-your-site-using-php/&amp;title=Post+to+Twitter+from+your+site+using+PHP" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://whyitwas.com/2009/01/31/post-to-twitter-from-your-site-using-php/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://whyitwas.com/2009/01/31/post-to-twitter-from-your-site-using-php/&amp;t=Post+to+Twitter+from+your+site+using+PHP" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://whyitwas.com/2009/01/31/post-to-twitter-from-your-site-using-php/&amp;t=Post+to+Twitter+from+your+site+using+PHP" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Post+to+Twitter+from+your+site+using+PHP+-+http://b2l.me/n3zg+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Post%20to%20Twitter%20from%20your%20site%20using%20PHP%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22%0A%0AYou%20want%20to%20post%20something%20to%20you%20Twitter%20account%3F%20For%20instance%20you%20might%20want%20your%20followers%20to%20know%20when%20your%20site%20has%20been%20used%20and%20what%20the%20result%20was%20e.g.%20you%20site%20might%20want%20to%20announce%20each%20time%20someone%20signs%20up%20for%20your%20service.%0A%0AThe%20answer%20is%20real%20easy%2C%20use%20cURL%20and%20PHP%20to%20update%20your%20pro%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://whyitwas.com/2009/01/31/post-to-twitter-from-your-site-using-php/" rel="nofollow" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://whyitwas.com/2009/01/31/post-to-twitter-from-your-site-using-php/&amp;title=Post+to+Twitter+from+your+site+using+PHP&amp;summary=%0A%0AYou%20want%20to%20post%20something%20to%20you%20Twitter%20account%3F%20For%20instance%20you%20might%20want%20your%20followers%20to%20know%20when%20your%20site%20has%20been%20used%20and%20what%20the%20result%20was%20e.g.%20you%20site%20might%20want%20to%20announce%20each%20time%20someone%20signs%20up%20for%20your%20service.%0A%0AThe%20answer%20is%20real%20easy%2C%20use%20cURL%20and%20PHP%20to%20update%20your%20pro&amp;source=Why It Was" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://whyitwas.com/2009/01/31/post-to-twitter-from-your-site-using-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How Twitter Can Help at Work</title>
		<link>http://whyitwas.com/2008/12/23/how-twitter-can-help-at-work/</link>
		<comments>http://whyitwas.com/2008/12/23/how-twitter-can-help-at-work/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 23:50:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.whyitwas.com/?p=101</guid>
		<description><![CDATA[This article highlights some of the ways which a company could use Twitter in it workplace. I know with our site JobFeedr?that we not only use Twitter as apart of our business model but as a way to respond to the community, post updates, and get advise.
Sourced From: The New York Times

By Sarah Milstein


Today we [...]]]></description>
			<content:encoded><![CDATA[<p class="entry-title">This article highlights some of the ways which a company could use Twitter in it workplace. I know with our site <a href="http://www.jobfeedr.com" target="_blank">JobFeedr</a>?that we not only use Twitter as apart of our business model but as a way to respond to the community, post updates, and get advise.</p>
<h2 class="entry-title">Sourced From: <a href="http://shiftingcareers.blogs.nytimes.com/2008/09/07/how-twitter-can-help-at-work/?excamp=GGSBtwitter&amp;WT.srch=1&amp;WT.mc_ev=click&amp;WT.mc_id=SB-S-E-GG-NA-CT-twitter" target="_blank">The New York Times</a></h2>
<p><!-- By line --><br />
<address class="byline author vcard">By <a class="url fn" title="See all posts by Sarah Milstein" href="http://www.whyitwas.com/author/sarah-milstein/"><span style="color: #004276;">Sarah Milstein</span></a></address>
<p><!-- Summary --><!-- The Content --></p>
<div class="entry-content" style="border-top-width: 1px;">
<p><em>Today we have a guest post by <a href="http://shiftingcareers.blogs.nytimes.com/2008/06/24/networking-strategy-walking-and-talking/"><span style="color: #004276;">Sarah Milstein</span></a>, a Web 2.0 consultant, on five ways to use Twitter in your career or in your business. ? Marci</em></p>
<div class="full-width" style="border-top-width: 1px;"><img src="http://www.nytimes.com/images/blogs/shiftingcareers/posts/TwitterResized533.jpg" alt="Twitter Screenshot" /><span class="caption">Posts from Twitter?s founder, Jack Dorsey</span></div>
<p><a href="http://www.twitter.com/"><span style="color: #004276;">Twitter</span></a> is a simple messaging service that you?ve either <a href="http://query.nytimes.com/search/sitesearch?query=twitter&amp;srchst=cse"><span style="color: #004276;">heard about a lot</span></a> or <a href="http://kara.allthingsd.com/20080428/twitter-where-nobody-know-your-name/"><span style="color: #004276;">not at all</span></a>. Either way, it?s a fun and useful tool, well worth trying if you want to reach potential and existing customers, employees or employers.</p>
<p>Like blogging, Twitter lets you write messages that other people can read. Unlike blogging, Twitter limits your messages to 140 characters. (The previous two sentences absorbed exactly 140 characters.) Readers can choose to receive your Twitter updates (sometimes called ?tweets?) on their phones, via IM, RSS or on the Web. The brevity, combined with the variety of delivery systems, make Twitter a powerful medium. Here are five ways to harness it:</p>
<p>1. Share ideas. Twitter is often called ?micro-blogging,? and as with regular-size blogging, some people use it primarily to share personal information, while others use it for professional reasons.</p>
<p>If you?re interested in the professional possibilities, ignore the Twitter prompt, ?What are you doing?? because frankly, the details of your day are banal to people who don?t know you (Proof: <a href="http://twitter.com/sarahm"><span style="color: #004276;">my Twitterstream</span></a>). Instead, note cool work-related things you?ve discovered ? a great article, a new Web site or an intriguing idea. Whenever possible, include a link (if it?s too long, use <a href="http://tinyurl.com/"><span style="color: #004276;">TinyURL</span></a> to shorten it with one click).</p>
<p>Or share your knowledge. The lexicographer <a href="http://twitter.com/emckean"><span style="color: #004276;">Erin McKean</span></a> posts neologisms; a group of <a href="http://twitter.com/vctips"><span style="color: #004276;">venture capitalists</span></a> gives tips to entrepreneurs.</p>
<p>2. Show respect. Another way to share ideas ? and your respect for other people in your field ? is to ?retweet? something interesting somebody else has Twittered. <a href="http://twitter.com/timoreilly"><span style="color: #004276;">Tim O?Reilly</span></a>, founder of <a href="http://www.oreilly.com/"><span style="color: #004276;">O?Reilly Media</span></a> (for which I?m co-writing a research report on Twitter), does this frequently and to great effect. Simply start your message with ?Retweeting@username? and then paste in the original message (the @ symbol is the Twitter convention for responding or referring to other users).</p>
<p>3. Build your brand. <a href="http://www.zappos.com/"><span style="color: #004276;">Zappos</span></a>, the online emporium known for outstanding customer service, encourages employees to <a href="http://twitter.zappos.com/employees"><span style="color: #004276;">Twitter</span></a> and to respond to customers who also use the service ? increasing the company?s reputation as a friendly place to shop and work. Notably, the chief executive of Zappos, <a href="http://twitter.com/zappos"><span style="color: #004276;">Tony Hsieh</span></a>, Twitters frequently. Because the company cultivates an un-corporate image, he?s the rare executive who can effectively post personal updates.</p>
<p>4. Engage customers. Run contests, solicit feedback and thank customers for supportive messages. <a href="http://twitter.com/jetblue"><span style="color: #004276;">Jetblue</span></a> does all three. (By the way, JetBlue doesn?t identify the person or people who Twitter under its account, but <a href="http://www.socializedpr.com/twitter-seven-rules/"><span style="color: #004276;">best practices</span></a> suggest you should.)</p>
<p>5. Provide customer service. <a href="http://www.whyitwas.com/twitter.com/wesabe"><span style="color: #004276;">Wesabe</span></a>, a personal finance site, has long used Twitter to respond to complaints and to let customers know when it?s fixing problems. <a href="http://twitter.com/comcastcares"><span style="color: #004276;">Comcast</span></a> doesn?t post, but it does use Twitter to respond to customers who have complained about the company.</p>
<p>How do Comcast and Wesabe know customers are grousing? Twitter?s excellent <a href="http://search.twitter.com/"><span style="color: #666699;">search feature</span></a> lets you learn what people are saying about any term ? including you, your competitors or your industry. (Oddly, this search feature is different from the relatively useless one at the top of your own Twitter home page.) You can then respond to individuals ? as Comcast and Wesabe do ? with the @username trick.</p>
<p>Signing up for a <a href="http://www.twitter.com/"><span style="color: #004276;">Twitter account</span></a> takes about 15 seconds. If you first want more detail on how the service works, check out the <a href="http://en.wikipedia.org/wiki/Twitter"><span style="color: #004276;">Wikipedia entry</span></a> or the ?<a href="http://www.commoncraft.com/Twitter"><span style="color: #004276;">Twitter in Plain English</span></a>? video. Still on the fence? Chris Brogan has 50 good ideas for <a href="http://www.chrisbrogan.com/50-ideas-on-using-twitter-for-business/"><span style="color: #004276;">using Twitter in business</span></a>.</p>
<p>Finally, no matter how you use it, remember that messages posted to Twitter ? even updates you send by phone or IM ? reside on the Web in perpetuity, where prospective employers and customers can find them. While 140 characters may not seem like much, they are enough to look unprofessional.</p></div>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-sexy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://whyitwas.com/2008/12/23/how-twitter-can-help-at-work/&amp;title=How+Twitter+Can+Help+at+Work" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://whyitwas.com/2008/12/23/how-twitter-can-help-at-work/&amp;title=How+Twitter+Can+Help+at+Work" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://whyitwas.com/2008/12/23/how-twitter-can-help-at-work/&amp;title=How+Twitter+Can+Help+at+Work" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://whyitwas.com/2008/12/23/how-twitter-can-help-at-work/&amp;title=How+Twitter+Can+Help+at+Work" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://whyitwas.com/2008/12/23/how-twitter-can-help-at-work/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://whyitwas.com/2008/12/23/how-twitter-can-help-at-work/&amp;t=How+Twitter+Can+Help+at+Work" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://whyitwas.com/2008/12/23/how-twitter-can-help-at-work/&amp;t=How+Twitter+Can+Help+at+Work" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=How+Twitter+Can+Help+at+Work+-+http://b2l.me/n3zk+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22How%20Twitter%20Can%20Help%20at%20Work%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22This%20article%20highlights%20some%20of%20the%20ways%20which%20a%20company%20could%20use%20Twitter%20in%20it%20workplace.%20I%20know%20with%20our%20site%20JobFeedr%3Fthat%20we%20not%20only%20use%20Twitter%20as%20apart%20of%20our%20business%20model%20but%20as%20a%20way%20to%20respond%20to%20the%20community%2C%20post%20updates%2C%20and%20get%20advise.%0A%0ASourced%20From%3A%20The%20New%20York%20Times%0ABy%20Sarah%20Mil%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://whyitwas.com/2008/12/23/how-twitter-can-help-at-work/" rel="nofollow" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://whyitwas.com/2008/12/23/how-twitter-can-help-at-work/&amp;title=How+Twitter+Can+Help+at+Work&amp;summary=This%20article%20highlights%20some%20of%20the%20ways%20which%20a%20company%20could%20use%20Twitter%20in%20it%20workplace.%20I%20know%20with%20our%20site%20JobFeedr%3Fthat%20we%20not%20only%20use%20Twitter%20as%20apart%20of%20our%20business%20model%20but%20as%20a%20way%20to%20respond%20to%20the%20community%2C%20post%20updates%2C%20and%20get%20advise.%0A%0ASourced%20From%3A%20The%20New%20York%20Times%0ABy%20Sarah%20Mil&amp;source=Why It Was" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://whyitwas.com/2008/12/23/how-twitter-can-help-at-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>http://twitter.com for Marketing</title>
		<link>http://whyitwas.com/2008/11/04/httptwittercom-for-marketing/</link>
		<comments>http://whyitwas.com/2008/11/04/httptwittercom-for-marketing/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 13:01:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Viral Marketing]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.whyitwas.com/?p=65</guid>
		<description><![CDATA[Unless you have been living under a rock you would of heard about Twittter which is a wonderful tool for marketing. Twitter describe themselves as micro blogging. The concept is that you constantly update it with 140 character message with what you are currently up to. This can be done several ways. More then just [...]]]></description>
			<content:encoded><![CDATA[<p>Unless you have been living under a rock you would of heard about <a title="Twitter" href="http://twitter.com" target="_self">Twittter</a> which is a wonderful tool for marketing. Twitter describe themselves as micro blogging. The concept is that you constantly update it with 140 character message with what you are currently up to. This can be done several ways. More then just you going there occasionally and updating your status like you do on <a title="FaceBook" href="http://www.facebook.com" target="_blank">FaceBook</a>, it allows for a lot more. It&#8217;s flexability and abilty to integrate with thrid party apps make it a bit of a marketer&#8217;s dream. A another good article, by Sarah Milstein, describes <a title="Twitter at work" href="http://shiftingcareers.blogs.nytimes.com/2008/09/07/how-twitter-can-help-at-work/?excamp=GGSBtwitter&amp;WT.srch=1&amp;WT.mc_ev=click&amp;WT.mc_id=SB-S-E-GG-NA-CT-twitter" target="_blank"><em>How Twitter Can Help at Work.</em></a></p>
<h2>Twitter</h2>
<p><a href="http://www.whyitwas.com/wp-content/uploads/2008/11/picture-1.png"><img class="alignright size-thumbnail wp-image-66" title="Twitter" src="http://www.whyitwas.com/wp-content/uploads/2008/11/picture-1-150x150.png" alt="" width="150" height="150" /></a>Twitter is a great tool for conecting to people who are just interested in what you are up to. Yes this is very late Gen X, Gen Y and Gen Z. You can connect to family, friends, strangers, colleagues, clients, bosses etc. Though you might want to keep in mind that people might not quite be interested in the fact you are taking the garbage out. They however may be more interested in developments or something new you can share with them like a cool link to a website. Why not make this easy for your readers?</p>
<p><strong><span style="color: #000080;">Quick Tip</span></strong></p>
<p>You can let readers add your website to their twitter by have a link to <a title="Try this" href="http://twitter.com/home/?status=I am reading about Twitter on http://www.whyitwas.com" target="_blank"><em>http://twitter.com/home/?status=&lt;&lt;type your website address here and message&gt;&gt;</em></a> i.e.</p>
<p style="padding-left: 30px;">&lt;a href=&#8221;http://twitter.com/home/?status=I am reading about Twitter on http://www.whyitwas.com&#8221;&gt;Add to Twitter&lt;/a&gt;</p>
<h2>Micro Blogging</h2>
<p><a title="Wikipedia" href="http://en.wikipedia.org/wiki/Micro-blogging" target="_blank">Micro-blogging</a> is basically providing little short updates on your world. The main two is <a title="Twitter" href="http://twitter.com" target="_blank">Twitter.com</a> and <a title="FaceBook" href="http://www.facebook.com" target="_blank">FaceBook&#8217;s</a> status updates. Twitter allows for users to create their updates via their website, SMS, and third party apps, which you can integrate into your website.</p>
<h2>For Marketing</h2>
<p>It&#8217;s API allows for website (and desktop)  designers to include tools into their website that take advantage of Twitter. These tools can either receive or post updates from/to <a title="Twitter" href="http://twitter.com" target="_blank">Twitter</a>. A couple of webmasters have used the ability to receive updates to analyses trends of links people a Twetting about. They then post the links to their websites and the names of the users posting them. <a title="http://twitturls.com/" href="http://twitturls.com/" target="_blank">http://twitturls.com/</a> and <a title="http://www.microblogbuzz.com/" href="http://www.microblogbuzz.com/" target="_blank">http://www.microblogbuzz.com/</a> are both sites which do this. People interested in these sort of sites then visit the site which are Tweetted.</p>
<h2>How to make the most of Twitter for marketing</h2>
<ol>
<li>Use something like <a title="Twitter Tool - by Alex King" href="http://alexking.org/blog/2007/05/07/twitter-tools-10" target="_blank">Twitter tools</a> for your <a title="WordPress" href="http://wordpress.org/" target="_blank">WordPress</a> site. Set it up to post updates to <a title="Twitter" href="http://twitter.com" target="_blank">Twitter</a> when you post something new on your blog. This is used on both <a title="ToolNames.Com" href="http://www.toolnames.com" target="_blank">ToolNames.Com</a> and <a title="WhyItWas.Com" href="http://whyitwas.com" target="_blank">whYitwas.Com</a>.</li>
<li>Include a <a title="Posting to Twitter using PHP" href="http://morethanseven.net/2007/01/20/posting-to-twitter-using-php/" target="_blank">twitter-posting-script </a>into your site for non-wordpress pages like on <a title="ToolNames.Com" href="http://www.toolnames.com" target="_blank">ToolNames.Com</a> for the tool wall.</li>
<li>Use Twitter buttons on your site for people to click so they can add your site to their Tweets. This is really simple (detailed below).</li>
</ol>
<p>You shouldn&#8217;t just limit yourself to the above, there is FaceBook, MySpace, Fark and many more you can setup to send links and updates to.</p>
<h2>Create a Twitter button</h2>
<ol>
<li>Find an icon that you want to use like to use like <a title="Twitter Button" href="http://www.milkaddict.com/?p=14" target="_blank">this one</a></li>
<li>Decide on a message you would like the reader&#8217;s Twitter to say like <em>I really think this website http://ToolNames.com is cool</em></li>
<li>Create a link &lt;a href=&#8221;http://twitter.com/home/?status=<em>I really think this website http://ToolNames.com is cool</em>&#8220;&gt;&lt;img src=&#8221;http://www.milkaddict.com/images/buttons/twitter-button.png&#8221; /&gt;&lt;/a&gt;</li>
</ol>
<p><a href="http://twitter.com/home/?status=I really think this website http://ToolNames.com is cool"><img src="http://www.milkaddict.com/images/buttons/twitter-button.png" alt="" /></a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-sexy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://whyitwas.com/2008/11/04/httptwittercom-for-marketing/&amp;title=http%3A%2F%2Ftwitter.com+for+Marketing" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://whyitwas.com/2008/11/04/httptwittercom-for-marketing/&amp;title=http%3A%2F%2Ftwitter.com+for+Marketing" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://whyitwas.com/2008/11/04/httptwittercom-for-marketing/&amp;title=http%3A%2F%2Ftwitter.com+for+Marketing" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://whyitwas.com/2008/11/04/httptwittercom-for-marketing/&amp;title=http%3A%2F%2Ftwitter.com+for+Marketing" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://whyitwas.com/2008/11/04/httptwittercom-for-marketing/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://whyitwas.com/2008/11/04/httptwittercom-for-marketing/&amp;t=http%3A%2F%2Ftwitter.com+for+Marketing" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://whyitwas.com/2008/11/04/httptwittercom-for-marketing/&amp;t=http%3A%2F%2Ftwitter.com+for+Marketing" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=http%3A%2F%2Ftwitter.com+for+Marketing+-+http://b2l.me/n4h9+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22http%3A%2F%2Ftwitter.com%20for%20Marketing%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Unless%20you%20have%20been%20living%20under%20a%20rock%20you%20would%20of%20heard%20about%20Twittter%20which%20is%20a%20wonderful%20tool%20for%20marketing.%20Twitter%20describe%20themselves%20as%20micro%20blogging.%20The%20concept%20is%20that%20you%20constantly%20update%20it%20with%20140%20character%20message%20with%20what%20you%20are%20currently%20up%20to.%20This%20can%20be%20done%20several%20ways.%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://whyitwas.com/2008/11/04/httptwittercom-for-marketing/" rel="nofollow" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://whyitwas.com/2008/11/04/httptwittercom-for-marketing/&amp;title=http%3A%2F%2Ftwitter.com+for+Marketing&amp;summary=Unless%20you%20have%20been%20living%20under%20a%20rock%20you%20would%20of%20heard%20about%20Twittter%20which%20is%20a%20wonderful%20tool%20for%20marketing.%20Twitter%20describe%20themselves%20as%20micro%20blogging.%20The%20concept%20is%20that%20you%20constantly%20update%20it%20with%20140%20character%20message%20with%20what%20you%20are%20currently%20up%20to.%20This%20can%20be%20done%20several%20ways.&amp;source=Why It Was" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://whyitwas.com/2008/11/04/httptwittercom-for-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

