<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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" version="2.0">

<channel>
	<title>media|extranet</title>
	
	<link>http://www.mediaextra.net</link>
	<description>campaign, connect and conquor</description>
	<pubDate>Thu, 24 Jul 2008 13:55:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/mediaextranet" type="application/rss+xml" /><item>
		<title>How to Build a Kiosk using Free Tools</title>
		<link>http://www.mediaextra.net/2008/marketing/build-kiosk-using-free-tools/</link>
		<comments>http://www.mediaextra.net/2008/marketing/build-kiosk-using-free-tools/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 20:37:28 +0000</pubDate>
		<dc:creator>Jack Keller</dc:creator>
		
		<category><![CDATA[Mac Software]]></category>

		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.mediaextra.net/?p=24</guid>
		<description><![CDATA[Setting up a secure public machine for demonstration purposes can be tricky. This is information freely available; however, when I first began this task, it was very difficult to get a straight answer on the do&#8217;s and&#160;don&#8217;ts. 
Please Note: This is only an effective way if you want to utilize a web-based presentation or&#160;application.
Around a [...]]]></description>
			<content:encoded><![CDATA[<p>Setting up a secure public machine for demonstration purposes can be tricky. This is information freely available; however, when I first began this task, it was very difficult to get a straight answer on the do&#8217;s and&nbsp;don&#8217;ts. </p>
<p>Please Note: This is only an effective way if you want to utilize a web-based presentation or&nbsp;application.</p>
<p>Around a year ago, a client of ours sent two brand spankin&#8217; new 24” iMac&#8217;s and wanted to use them as secure browsers. So, we got to work on figuring out how to implement this sort of thing on the Mac platform. Our company before used to build .NET applications specific to an event and windows based machine; this process wasn&#8217;t the most streamlined, seeing as how a simple web app for data capture would work just as well. So after some searching, I found a method that would work out perfectly for this and it&#8217;s even cross platform&nbsp;compatible!</p>
<p><span id="more-24"></span><strong>Step 1:</strong><br />
<a href="http://www.opera.com/" target="_blank">Download Opera&#8217;s latest and greatest.</a> (opens in a new&nbsp;window)</p>
<p><strong>Step 2:</strong><br />
Open up Opera and get into the settings&nbsp;preferences.</p>
<p>Under the General Tab set your Starting Preference (Start with home page). Then set the home page appropriate to your event; I chose a local file to accomplish&nbsp;this.</p>
<p><img src="http://www.mediaextra.net/wp-content/uploads/2008/07/operastep21.png" alt="Opera Step 2.1" title="operastep21" width="647" class="alignnone size-full" border="0" /></p>
<p>Then click the Wand Tab and uncheck the “Let the Wand remember passwords”&nbsp;box.</p>
<p><img src="http://www.mediaextra.net/wp-content/uploads/2008/07/operastep22.png" alt="Opera Step 2.2" title="operastep22" width="647" class="alignnone size-full" /></p>
<p>Now head over to the Advanced Tab and find Security (highlighted) and click Set Master Password &#8230;<br />
This will ensure that you can get the computer out of Kiosk mode in order to utilize it later on as a computer again. So this step is fairly&nbsp;important!</p>
<p><img src="http://www.mediaextra.net/wp-content/uploads/2008/07/operastep23.png" alt="Opera Step 2.3" title="operastep23" class="alignnone size-full" /></p>
<p>Under the same Advanced Tab you need to locate Shortcuts and uncheck the Enable mouse gestures. This will prevent anyone who may know Opera mouse gestures from being able to try any funny&nbsp;business.</p>
<p><img src="http://www.mediaextra.net/wp-content/uploads/2008/07/operastep24.png" alt="Opera Step 2.4" title="operastep24" class="alignnone size-full" /></p>
<p><strong>Step 3:</strong><br />
Now that those settings are out of the way, we can move into the more nitty gritty stuff. As we are using Mac as an example, go ahead and fire up Script Editor.app from your Applications/Applescript folder. This will be a very basic script, one line of&nbsp;code.</p>
<p><code>do shell script "/Applications/Opera.app/Contents/MacOS/Opera -kioskmode&nbsp;-noexit"</code></p>
<p>Of course if you stuck Opera.app into another folder, the part in between the &#8221; may slightly&nbsp;differ.</p>
<p>Save that script somewhere in case you want to edit it sometime, then do a Save As &#8230; You will select Application as the File Format. I usually save something like that onto the Desktop so an Event Staffer can locate it&nbsp;easily.</p>
<p><em>So is that it?</em> Not quite, but we&#8217;re close. For it to actually be secure, you still need to filter out sites, or in a better case, only allow certain ones blocking all&nbsp;others.</p>
<p><strong>Step 4:</strong><br />
Since Opera has been run, there will now be an <strong>urlfilter.ini</strong> file that should be edited. On the Mac you can find this at: /Users/yourusername/Library/Preferences/Opera Preferences/ if the urlfilter.ini file is NOT in there, you need to create it (sometimes it is and sometimes it isn&#8217;t, no rhyme or reason to it). Okay, so you have the file, let&#8217;s open it up in a text editor and fill it with something similar to&nbsp;below.</p>
<p><code>Opera Preferences version 2.1<br />
; Do not edit this file while Opera is running<br />
; This file is stored in UTF-8&nbsp;encoding</code></p>
<p><code>[prefs]<br />
</code><code>prioritize excludelist=0<br />
</code><code><br />
[include]<br />
file://localhost/Users/user/Sites/kiosk*<br />
*.somewhereelse.com*<br />
*.thatsite.net*<br />
</code><br />
<code>[exclude]<br />
*<br />
</code><br />
The *.domain.com* are sites that you will allow the browser to visit and the * are there as wildcards, in case one of those sites sends the user to a different subdomain or&nbsp;folder.</p>
<p><strong>Step 5:</strong><br />
You just have to set up the computer at that point to automatically log in as the Kiosk User (or whatever user you just set this up for) and ensure that they have the Applescript Application in their Login Items&nbsp;path.</p>
<p>There are a lot more rules that can be applied; however, these should take care of most needs for most circumstances. If you are doing something for the military or another government branch, you may want to write an actual&nbsp;application.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaextra.net/2008/marketing/build-kiosk-using-free-tools/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Etiquette in Business</title>
		<link>http://www.mediaextra.net/2008/workflow/etiquette-business/</link>
		<comments>http://www.mediaextra.net/2008/workflow/etiquette-business/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 21:33:01 +0000</pubDate>
		<dc:creator>Jenna Gruhala</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Public Relations]]></category>

		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://www.mediaextra.net/?p=23</guid>
		<description><![CDATA[Not only is etiquette a courtesy in business and personal life; it&#8217;s also a way to immediately create credibility in your brand, you.  So what exactly is good etiquette in the business&#160;world?
A few tips to&#160;consider:

When someone enters a meeting room, stand and greet&#160;them
When in a room of strangers, extend a warm handshake and introduce yourself, [...]]]></description>
			<content:encoded><![CDATA[<p>Not only is etiquette a courtesy in business and personal life; it&#8217;s also a way to immediately create credibility in your brand, you.  So what exactly is good etiquette in the business&nbsp;world?</p>
<p>A few tips to&nbsp;consider:</p>
<ul>
<li>When someone enters a meeting room, stand and greet&nbsp;them</li>
<li>When in a room of strangers, extend a warm handshake and introduce yourself, especially to those standing&nbsp;solo</li>
<li>When dining, don&#8217;t chew with your mouth&nbsp;open</li>
<li>Don&#8217;t chew gum during&nbsp;meetings</li>
<li>Never put your bags on the conference room table; sit them next to your chair or on your chair and unload from&nbsp;there</li>
<li>Always bring paper, writing utensil and your calendar to ANY&nbsp;meeting</li>
<li>Always arrive a few minutes prior to a meeting - don&#8217;t make everyone wait on&nbsp;you</li>
<li>Hold the door for others - male or&nbsp;female</li>
<li>Clean up after yourself; don&#8217;t expect someone else to pick up your dirtied glass or&nbsp;trash</li>
<li>Send a handwritten thank you note after meeting a new person and enclose your business card &#8230; not only good etiquette, but also good&nbsp;networking!</li>
</ul>
<p>For more great tips, check out <a href="http://www.emilypost.com/business/index.htm">Emily&nbsp;Post</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaextra.net/2008/workflow/etiquette-business/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to work with reporters</title>
		<link>http://www.mediaextra.net/2008/public-relations/work-reporters/</link>
		<comments>http://www.mediaextra.net/2008/public-relations/work-reporters/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 00:12:37 +0000</pubDate>
		<dc:creator>Jenna Gruhala</dc:creator>
		
		<category><![CDATA[Public Relations]]></category>

		<guid isPermaLink="false">http://www.mediaextra.net/?p=22</guid>
		<description><![CDATA[As a public relations professional, it&#8217;s my job to call reporters and share my client&#8217;s story with the media. But for a moment, imagine the other end of the phone line &#8230; the reporter. Hundreds, if not thousands, of people just like me are calling, emailing and faxing; all of us working to get the [...]]]></description>
			<content:encoded><![CDATA[<p>As a public relations professional, it&#8217;s my job to call reporters and share my client&#8217;s story with the media. But for a moment, imagine the other end of the phone line &#8230; the reporter. Hundreds, if not thousands, of people just like me are calling, emailing and faxing; all of us working to get the reporter&#8217;s attention so they&#8217;ll write a story. How do you set yourself apart from the pack? Keep reading&nbsp;&#8230;</p>
<p>PR isn&#8217;t just about picking up the phone and calling a reporter. There is a ton of strategy involved in what we do. So before you pick up the phone or send out a &#8220;PR release,&#8221; listen to what I have to&nbsp;say</p>
<p>But STOP! Before we go any further, IT IS NOT CALLED A PR RELEASE. I repeat. It is not called a &#8220;PR Release.&#8221;  We send out news&nbsp;releases</p>
<p>Now, on to the good&nbsp;stuff</p>
<p>DO NOT MASS DISTRIBUTE. Don&#8217;t blast emails or faxes. Don&#8217;t do a generic pitch that blankets a ton of reporters.  It&#8217;s important that you do your homework and get to know each reporter you&#8217;re planning to pitch. There is nothing more embarrassing than sending a pitch to a reporter that doesn&#8217;t cover your topic. Example: my client is launching an exercise video. Over my dead body will I pitch the financial editor on this topic. UNLESS there is a financial&nbsp;angle</p>
<p>Further, mass distributing your news releases is just like spam. You know how annoyed you get when you receive those Australian lottery winner emails or the African prince that is looking for his soul mate. DON&#8217;T&nbsp;SPAM</p>
<p>Customize your outreach. Refer to previous coverage by that particular reporter. Open up with a brief remark that gets the conversation going &#8230; and personalize&nbsp;it.</p>
<p>It&#8217;s fine to follow up with a reporter, but please don&#8217;t call and ask if they&#8217;ve received your news release. Chances are their desk is just as cluttered as yours.  Instead, lead with &#8220;Am I calling at a good time&#8221; and give them a couple of juicy facts to gauge their interest. They may ask you to send them a release; don&#8217;t be offended. Just keep your mouth shut and send it again. Be respectful of their time and courteous with your follow&nbsp;up.</p>
<p>Most importantly, develop relationships with reporters so that you become a resource for them.  A few reporters I work with contact me needing sources for stories that don&#8217;t apply to any of my clients. I don&#8217;t mind helping them because I know that when I really need them, they&#8217;ll be&nbsp;there.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaextra.net/2008/public-relations/work-reporters/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Going Green for More Green</title>
		<link>http://www.mediaextra.net/2008/design/green-green/</link>
		<comments>http://www.mediaextra.net/2008/design/green-green/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 18:35:27 +0000</pubDate>
		<dc:creator>Jenna Gruhala</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Public Relations]]></category>

		<guid isPermaLink="false">http://www.mediaextra.net/?p=21</guid>
		<description><![CDATA[It&#8217;s no secret that today&#8217;s society has concern for the environment. Recycling, hybrid vehicles, buying locally grown produce. As citizens we&#8217;re all working to do our part. But what about corporate America? What about the companies that have maintained a focus on the environment for decades? How do we ALL work together to protect our&#160;planet?
I [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s no secret that today&#8217;s society has concern for the environment. Recycling, hybrid vehicles, buying locally grown produce. As citizens we&#8217;re all working to do our part. But what about corporate America? What about the companies that have maintained a focus on the environment for decades? How do we ALL work together to protect our&nbsp;planet?</p>
<p>I came across a great article last week in Ad Age, <a href="http://adage.com/greenmarketing08/article.php?article_id=127546">How Agencies Are Helping Their Clients Help The Environment</a>. It really puts things in perspective &#8230; as individuals, it&#8217;s important to make wise decisions concerning the environment (recycling, buying locally-grown produce, etc.). As a corporation, it&#8217;s important to take a look at how we can eliminate waste during the manufacturing process, etc. But as a marketer what can we do? We can encourage our clients to create earth-friendly&nbsp;campaigns.</p>
<p>Example: <a href="www.snackboxlabs.com">Snackbox</a> is working with a major consumer packaged good brand that has practiced earth-friendly production since the early 1900s. Before it was &#8220;cool&#8221; to be &#8220;green.&#8221;  We&#8217;re working with said company to create a public relations campaign that educates consumers about their practices in producing disposable tableware.  Most don&#8217;t automatically think paper plates = good for the environment. I&#8217;m sure demand for their product will increase once our campaign is complete, but more importantly, as consumers, we will know that we have choices. Choices that are actually good for the&nbsp;environment.</p>
<p>We&#8217;re also taking the environment into account in other practices: Doing away with paper press kits, emailing our invoices and presenting brand identity systems electronically rather than pasting to presentation&nbsp;boards.</p>
<p>Protecting the environment isn&#8217;t another fad. Let&#8217;s all do our part to protect and&nbsp;preserve.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaextra.net/2008/design/green-green/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Building Business by Asking Questions</title>
		<link>http://www.mediaextra.net/2008/public-relations/building-business-questions/</link>
		<comments>http://www.mediaextra.net/2008/public-relations/building-business-questions/#comments</comments>
		<pubDate>Tue, 27 May 2008 21:24:12 +0000</pubDate>
		<dc:creator>Jenna Gruhala</dc:creator>
		
		<category><![CDATA[Public Relations]]></category>

		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://www.mediaextra.net/?p=20</guid>
		<description><![CDATA[Quite often, we&#8217;re handed a project, ask the necessary questions, produce great work and move on to the next prospect. It&#8217;s a model that has made a lot of freelancers great income throughout the&#160;ages.
But why stop with one&#160;project?
One of the more difficult things we encounter as business owners is the art of cold calling to [...]]]></description>
			<content:encoded><![CDATA[<p>Quite often, we&#8217;re handed a project, ask the necessary questions, produce great work and move on to the next prospect. It&#8217;s a model that has made a lot of freelancers great income throughout the&nbsp;ages.</p>
<p>But why stop with one&nbsp;project?</p>
<p>One of the more difficult things we encounter as business owners is the art of cold calling to expand our business. But why go through all of the effort when you have clients from your past who are perfectly capable of being your clients of the&nbsp;future?</p>
<p>I encourage you to dive deep into your Rolodex and remain in contact with ALL of your clients. Build conversation with them, create a database you can reference for years to&nbsp;come.</p>
<p>For example, I make note in my address book regarding important answers to my questions: does my client contact have kids, what is their favorite food, do they have pets, etc.  Those notes allow me to pick up dialog right away without missing a beat.  It doesn&#8217;t mean that I don&#8217;t value each of the people in my Rolodex &#8230; it just means that my Rolodex is too large to remember all of the details. My database allows me to keep&nbsp;up.</p>
<p>As you build your Rolodex, you can watch for patterns and have the opportunity to connect those in your network. Build Karma points by connecting a favorite package designer with an inventor looking to gain shelf space in local grocery stores. More than likely, those who have been helped by you are happy to return the favor down the&nbsp;road.</p>
<p>It&#8217;s all about who you know, but also what you know about&nbsp;them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaextra.net/2008/public-relations/building-business-questions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Easy PHP contact form, with gotcha!</title>
		<link>http://www.mediaextra.net/2008/scripting/php/easy-php-contact-form-gotcha/</link>
		<comments>http://www.mediaextra.net/2008/scripting/php/easy-php-contact-form-gotcha/#comments</comments>
		<pubDate>Mon, 19 May 2008 22:19:42 +0000</pubDate>
		<dc:creator>Jack Keller</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[$_POST]]></category>

		<category><![CDATA[contact form]]></category>

		<category><![CDATA[form]]></category>

		<category><![CDATA[function]]></category>

		<category><![CDATA[isset]]></category>

		<category><![CDATA[spam prevention]]></category>

		<guid isPermaLink="false">http://www.mediaextra.net/?p=19</guid>
		<description><![CDATA[Yes that&#8217;s right, I called it Gotcha. So why Gotcha? Simple really, it&#8217;s not as involved as a Captcha (also not as secure but will fend off most spambots). Below I have written a very simple Contact form in PHP, I will explain the goods right after the form.
Okay, let&#8217;s take a step through this [...]]]></description>
			<content:encoded><![CDATA[<p>Yes that&#8217;s right, I called it Gotcha. So why Gotcha? Simple really, it&#8217;s not as involved as a Captcha (also not as secure but will fend off most spambots). Below I have written a very simple Contact form in PHP, I will explain the goods right after the form.<span id="more-19"></span></p>
<p>Okay, let&#8217;s take a step through this method. First off is the <strong>if(isset($_POST[&#8216;submit&#8217;]))</strong>, all that really does it tell the page to run the mail and spam checking functions if the user submitted the form. Then it gets the POST methods from the submission and we set the&nbsp;variables.</p>
<div class="igBar"><span id="lphp-5"><a href="#" onclick="javascript:showPlainTxt('php-5'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-5">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#616100;">if</span><span style="color:#006600; font-weight:bold;">&#40;</span><a href="http://www.php.net/isset"><span style="color:#000066;">isset</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$_POST</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">&#8216;submit&#8217;</span><span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$name</span> = <span style="color:#0000FF;">$_POST</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">&#8216;name&#8217;</span><span style="color:#006600; font-weight:bold;">&#93;</span>;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$email</span> = <span style="color:#0000FF;">$_POST</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">&#8216;email&#8217;</span><span style="color:#006600; font-weight:bold;">&#93;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$stuff</span> = <span style="color:#0000FF;">$_POST</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">&#8216;stuff&#8217;</span><span style="color:#006600; font-weight:bold;">&#93;</span>;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$human</span> = <span style="color:#0000FF;">$_POST</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">&#8216;human&#8217;</span><span style="color:#006600; font-weight:bold;">&#93;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>The <strong>if ($human != &#8220;123&#8221;) {</strong> business checks that the user is not a&nbsp;spambot.</p>
<p>In this case <strong>ABC is easy as 123</strong>, so if the user doesn&#8217;t type in 123 it will alert them and send them back to the previous page (I hate to click a back button, so I took that step out). If they do answer <strong>123</strong> the script will hit the next block, which is a basic PHP mail function. If they did not it alerts them and sends a history.back(1) script so they can take another whack at&nbsp;it.</p>
<div class="igBar"><span id="lphp-6"><a href="#" onclick="javascript:showPlainTxt('php-6'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-6">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#616100;">if</span> <span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$human</span> != <span style="color:#FF0000;">&#8220;123&#8221;</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> <span style="color:#FF0000;">&#8220;&lt;script&gt;alert(&#8216;Whoa $name you either answered the last question wrong, or forgot to answer at all!&#8217;);&#8221;</span>;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> <span style="color:#FF0000;">&#8216;&lt;/script&gt;&lt;script&gt;history.back(1)&lt;/script&gt;&#8217;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/exit"><span style="color:#000066;">exit</span></a>;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>If the user did answer the secret question correctly, the script can move onto the next step. In this step the users comments will be sent to you. So I set a variable for your email (in this example you@yourdomain.com, pretty basic I know). Then the subject and message body. Tip, you can inject the variables from the first step into your subject and message, in fact you need to somewhere or you won&#8217;t get any info. You do this by using the $name, $email,&nbsp;etc.</p>
<div class="igBar"><span id="lphp-7"><a href="#" onclick="javascript:showPlainTxt('php-7'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-7">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$to_email</span> = <span style="color:#FF0000;">&#8220;you@yourdomain.com&#8221;</span>;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$subject</span> = <span style="color:#FF0000;">&#8220;$name wanted to tell you something&#8221;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$msg</span> = <span style="color:#FF0000;">&#8220;$name wanted to let you know $stuff&lt;br /&gt;Email them at &lt;a href=&#8217;mailto:$email&#8217;&gt;$email&lt;/a&gt; to answer!&#8221;</span>;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$mailheaders</span> = <span style="color:#FF0000;">&#8220;From:&nbsp; $email<span style="color:#000099; font-weight:bold;">\n</span>&#8221;</span>;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$mailheaders</span> .= <span style="color:#FF0000;">&#8220;Reply-To:&nbsp; $email<span style="color:#000099; font-weight:bold;">\n</span>&#8221;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$mailheaders</span> .= <span style="color:#FF0000;">&#8220;Return-Path: $email<span style="color:#000099; font-weight:bold;">\n</span>&#8221;</span>;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$mailheaders</span> .= <span style="color:#FF0000;">&#8220;Content-type: text/html<span style="color:#000099; font-weight:bold;">\n</span><span style="color:#000099; font-weight:bold;">\n</span>&#8221;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><a href="http://www.php.net/mail"><span style="color:#000066;">mail</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$to_email</span>, <span style="color:#0000FF;">$subject</span>, <span style="color:#0000FF;">$msg</span>, <span style="color:#0000FF;">$mailheaders</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> <span style="color:#FF0000;">&#8220;&lt;script&gt;alert(&#8216;Thanks for taking the time to contact me, $name I will get back to you as soon as possible!&#8217;);&lt;/script&gt;&#8221;</span>;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> <span style="color:#FF0000;">&#8216;&lt;script&gt;location.replace(&quot;/&quot;)&lt;/script&gt;&#8217;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; <a href="http://www.php.net/exit"><span style="color:#000066;">exit</span></a>;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span> <span style="color:#616100;">else</span> <span style="color:#006600; font-weight:bold;">&#123;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Cool, the form was sent and the user was informed of their success, and then sent to the site root. The <strong>} else {</strong> is fairly important, without this nothing will show up for the user to fill&nbsp;out.</p>
<div class="igBar"><span id="lphp-8"><a href="#" onclick="javascript:showPlainTxt('php-8'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-8">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$form</span> = <span style="color:#FF0000;">&#8216;&lt;form action=&quot;&#8217;</span>.<span style="color:#0000FF;">$_SERVER</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">&#8216;PHP_SELF&#8217;</span><span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="color:#FF0000;">&#8216;&quot; method=&quot;post&quot;&gt;&#8217;</span>;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$form</span> .= <span style="color:#FF0000;">&#8216;And you are?&lt;br /&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&nbsp; &nbsp; &lt;input type=&quot;text&quot; name=&quot;name&quot; id=&quot;name&quot; /&gt;&lt;br /&gt; </span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&nbsp; &nbsp; I can email you where?&lt;br /&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&nbsp; &nbsp; &lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; /&gt;&lt;br /&gt;</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&nbsp; &nbsp; You<span style="color:#000099; font-weight:bold;">&#39;</span>d like to tell me?&lt;br /&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&nbsp; &nbsp; &lt;textarea name=&quot;stuff&quot; id=&quot;stuff&quot;&gt;&lt;/textarea&gt;&lt;br /&gt;</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&nbsp; &nbsp; ABC is easy as &lt;input type=&quot;text&quot; name=&quot;human&quot; id=&quot;human&quot; size=&quot;3&quot; /&gt; (&lt;em&gt;According to the Jackson 5&lt;/em&gt;)&lt;br /&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&nbsp; &nbsp; &lt;input name=&quot;submit&quot; type=&quot;submit&quot; value=&quot;Tell Me Something Good!&quot; /&gt;</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;/form&gt;&#8217;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> <span style="color:#0000FF;">$form</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Lastly, do not forget to put your <strong>}</strong> before the end of the script, I say that because I sometimes forget&nbsp;that.</p>
<p>So that&#8217;s it, if you want to download this script for reference <a href="http://stardup.com/urls/gotcha_php/">click here</a> If you just copy and paste the highlighted code you&#8217;ll have to replace all &#8217; with the proper single&nbsp;ticks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaextra.net/2008/scripting/php/easy-php-contact-form-gotcha/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Forgoing quality for timelines</title>
		<link>http://www.mediaextra.net/2008/workflow/forgoing-quality-for-timelines/</link>
		<comments>http://www.mediaextra.net/2008/workflow/forgoing-quality-for-timelines/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 20:05:57 +0000</pubDate>
		<dc:creator>Jack Keller</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Workflow]]></category>

		<category><![CDATA[client deadlines]]></category>

		<category><![CDATA[projects]]></category>

		<category><![CDATA[quality work]]></category>

		<guid isPermaLink="false">http://www.mediaextra.net/2008/workflow/forgoing-quality-for-timelines/</guid>
		<description><![CDATA[This is about what some clients want you to do in order to accomplish their overall goal, which usually ends up coming back to you the designer as a negative project both you and the customer. Maybe we could get a good rapport on how to effectively guide a client out of the mindset that [...]]]></description>
			<content:encoded><![CDATA[<p>This is about what some clients want you to do in order to accomplish their overall goal, which usually ends up coming back to you the designer as a negative project both you and the customer. Maybe we could get a good rapport on how to effectively guide a client out of the mindset that having a project done faster doesn&#8217;t always equate to having it done&nbsp;better.</p>
<p>One type of client may want to have their website up by the end of the week so that they can be ready to &#8220;make money&#8221; over the weekend. But I have found that if you sacrifice your time in testing and ensuring proper usability the website will initially flop. It is best to have a good plan of action and stick to it. The client like this I have found will normally want a large project done and wait until two days before their desired deadline to get you essential project&nbsp;information.</p>
<p>Say your job is print related, staring at the MAR+APR 2008 Create magazine sitting beside me I can see a ton of work going into some of the ads placed in here. So if I was designing for something like this; where obviously deadline is an issue. I may have to steer the client out of the target issue if their overall brand or idea wasn&#8217;t properly portrayed, suggesting the following issues print deadline for a more successful&nbsp;campaign.</p>
<p>How do others handle clients like&nbsp;these?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaextra.net/2008/workflow/forgoing-quality-for-timelines/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Emerging Consumers</title>
		<link>http://www.mediaextra.net/2008/workflow/emerging-consumers/</link>
		<comments>http://www.mediaextra.net/2008/workflow/emerging-consumers/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 05:03:16 +0000</pubDate>
		<dc:creator>Jenna Gruhala</dc:creator>
		
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://www.mediaextra.net/?p=17</guid>
		<description><![CDATA[As you probably know, traditionally, the &#8220;sweet spot&#8221; for most marketers has been the consumers who occupy the coveted 18-34 age bracket.  While is has become a commonly-accepted &#8216;fact&#8217; that this group spends and spends frequently, the REAL FACT being overlooked by many American marketers is that  18-34 is not the only demographic [...]]]></description>
			<content:encoded><![CDATA[<p>As you probably know, traditionally, the &#8220;sweet spot&#8221; for most marketers has been the consumers who occupy the coveted 18-34 age bracket.  While is has become a commonly-accepted &#8216;fact&#8217; that this group spends and spends frequently, the REAL FACT being overlooked by many American marketers is that  18-34 is not the only demographic &#8220;sweet spot.&#8221;  There is another group of considerable size, possessing far more spending power, that&#8217;s almost ignored in the strategic plans of many of our most prominent&nbsp;marketers.</p>
<p>Who are these &#8220;emerging&#8221; consumers flying under today&#8217;s marketing radar screen?  Why, they&#8217;re just our Baby Boomers.  Consumers age 40 to 70, nearly 100 million strong, with annual spending power of more than $2.1 trillion &#8212; seven times the spending power of Generations X and Y&nbsp;combined.</p>
<p>Recent studies prove Baby Boomers still have what it takes in the spending department:
<ul>	
<li>People over 40 spend 65% more than any other age&nbsp;group</li>
<li>The average household buys 13 cars in a lifetime - nine of them after age&nbsp;40</li>
<li>One of Nintendo’s fastest growing new products is Wii Bowling. Their biggest customers?  Retirement homes. They call it&nbsp;&#8220;Wii-habbing&#8221;</li>
<li>The 45-75 age group spent $97 billion in household furnishings and $32 billion in the drug category in 2004, 14% and 148% more, respectively, than consumers age 44 and&nbsp;under</li>
<li>The average age of a Harley Davidson buyer is&nbsp;48</li>
<p></ul>
<p>Enter thirdgear, a Chicago-based marketing consultancy with a fresh new focus on the Baby Boomer generation. thirdgear, in partnership with Millennium, a UK-based advertising agency, is committed to its mission of bringing marketers closer to the millions of consumers over 40 who helped set the tone for today&#8217;s consumer&nbsp;landscape.</p>
<p>thirdgear has created a proprietary panel of consumers over 40 called gearheads.  These active, highly involved, highly opinionated think tankers are not shy about sharing their ideas and opinions on about everything from product design to packaging to&nbsp;advertising.</p>
<p>And, in response to this booming market, thirdgear co-founded IMMN, the International Mature Marketing Network. The association’s mission is to champion mature marketing around the world and currently has members from Australia, New Zealand, Japan, England and the United States, including noted marketing consultants and authors such as Marti Barletta and Dick&nbsp;Stroud.</p>
<p>To learn more about thirdgear, check out their Web site, <a href="http://www.thirdgear.com">www.thirdgear.com</a> or reach out to Jenna at 773.715.0879 or&nbsp;jenna@snackboxlabs.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaextra.net/2008/workflow/emerging-consumers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Guide to a Print Friendly Website</title>
		<link>http://www.mediaextra.net/2008/scripting/css-scripting/guide-print-friendly-website/</link>
		<comments>http://www.mediaextra.net/2008/scripting/css-scripting/guide-print-friendly-website/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 04:21:25 +0000</pubDate>
		<dc:creator>Jack Keller</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[accessibility]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[print media]]></category>

		<guid isPermaLink="false">http://www.mediaextra.net/2008/scripting/css-scripting/guide-print-friendly-website/</guid>
		<description><![CDATA[
Ever run across a good article on a website, but you were about to punch the timecard, or head away from the computer? What do you usually do, you can drag it to your overlowing bookmark bar where you will undoubtably forget about it for a few weeks. Maybe you post it to your del.icio.us [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.mediaextra.net/wp-content/uploads/2008/03/print-friendly-trans.png' alt='print friendly stylesheet' align='right' />
<p>Ever run across a good article on a website, but you were about to punch the timecard, or head away from the computer? What do you usually do, you can drag it to your overlowing bookmark bar where you will undoubtably forget about it for a few weeks. Maybe you post it to your del.icio.us account instead, or some other bookmarking site, where again you usually forget about it. I find it&#8217;s helpful to just hit command+p (ctrl+p for the PC user) and normally get just an awfully layed out print of the page, and normally it has some content cut off, well that was useless and not very green to waste the paper and ink&nbsp;right?</p>
<p>After a week of finding articles and not being able to get a decent print I aimed to fix it for our site, and then write about how others could do the same. If your a designer and your getting a lot of traffic it stands to reason that someone may at some point print out your article for later&nbsp;reading.</p>
<p><span id="more-13"></span>
<p><strong>Step one:</strong> You can do this a few ways, the simplest may be making a copy of your style.css (in some cases the name may differ of course) and name that file print.css. Then fire up your favorite text or CSS editor and get to work on hiding your elements that have no need to print. (navigation, headers, backgrounds, etc. can usually get tossed out for this stylesheet) using a simple <strong>display: none;</strong> is normally quite&nbsp;effective.</p>
<p><strong>Step two:</strong> Start to choose the selectors you want to hide for the print view, normally I set up, jot them down or directly edit the file. You&#8217;ll end up cutting out the dead weight before you finish your edits. A very simple demo below is an example of how to hide everything but the article for this&nbsp;site. </p>
<div class="igBar"><span id="lcss-11"><a href="#" onclick="javascript:showPlainTxt('css-11'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CSS:</span>
<div id="css-11">
<div class="css">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">* <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">margin</span>: <span style="color: #cc66cc;color:#800000;">0</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">padding</span>: <span style="color: #cc66cc;color:#800000;">0</span>;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">font-family</span>: <span style="color: #ff0000;">&#8220;Times New Roman&#8221;</span>, Times, <span style="color: #993333;">serif</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">.<span style="color: #000000; font-weight: bold;">right</span>, .navigation, .searchheader, .<span style="color: #000000; font-weight: bold;">bottom</span>, #comment-form, #respond, #comments, ol.commentlist, <span style="color: #6666ff;">.sociable </span><span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">display</span>: <span style="color: #993333;">none</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #6666ff;">.wrapper </span><span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">width</span>: <span style="color: #cc66cc;color:#800000;">8</span>.5in;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">padding-right</span>: .75in;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">padding-left</span>: .75in;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">ol, ul <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">margin-left</span>: 40px;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">margin-right</span>: 40px;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #6666ff;">.descr </span><span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">margin-bottom</span>: 20px;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #6666ff;">.entry </span><span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">visibility</span>: <span style="color: #993333;">visible</span>!important;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">.footer, <span style="color: #6666ff;">.info </span><span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">margin-top</span>: 20px;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">a <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">color</span>: <span style="color: #000000; font-weight: bold;">black</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">text-decoration</span>: <span style="color: #993333;">none</span>;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p>
Put this line into your page head so that the browser will know to grab this stylesheet for printing. The main difference between this and main stylesheet is the <strong>media</strong>&nbsp;portion.</p>
<div class="igBar"><span id="lhtml-12"><a href="#" onclick="javascript:showPlainTxt('html-12'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">HTML:</span>
<div id="html-12">
<div class="html">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/link.html"><span style="color: #000000; font-weight: bold;">&lt;link</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">&#8220;http://www.yoursite.com/print.css&#8221;</span> <span style="color: #000066;">media</span>=<span style="color: #ff0000;">&#8220;print&#8221;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&#8220;text/css&#8221;</span> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">&#8220;stylesheet&#8221;</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> </div>
</li>
</ol>
</div>
</div>
</div>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaextra.net/2008/scripting/css-scripting/guide-print-friendly-website/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tips for Optimizing Your SEO</title>
		<link>http://www.mediaextra.net/2008/workflow/tips-optimizing-seo/</link>
		<comments>http://www.mediaextra.net/2008/workflow/tips-optimizing-seo/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 14:20:18 +0000</pubDate>
		<dc:creator>Jenna Gruhala</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<category><![CDATA[Workflow]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[SEF]]></category>

		<category><![CDATA[traffic]]></category>

		<guid isPermaLink="false">http://www.mediaextra.net/2008/workflow/tips-optimizing-seo/</guid>
		<description><![CDATA[ We came across a great article on the do’s and don’ts of Google search engine optimization (SEO). The beef of the article is included&#160;below.
DO

Have other quality, relevant sites link to&#160;yours
Submit a site map using your Google Webmaster Tools&#160;account
Submit your site to quality, high authority directories in the appropriate&#160;category
Make a site with text links and [...]]]></description>
			<content:encoded><![CDATA[<h3 class="post-title entry-title"> We came across a <a href="http://seonoobs.com/exclusive-google-seo-advice-breaking-news/">great article </a>on the do’s and don’ts of Google search engine optimization (SEO). The beef of the article is included&nbsp;below.</h3>
<p><span style="font-weight: bold">DO</span>
<ol>
<li>Have other quality, relevant sites link to&nbsp;yours</li>
<li>Submit a site map using your Google Webmaster Tools&nbsp;account</li>
<li>Submit your site to quality, high authority directories in the appropriate&nbsp;category</li>
<li>Make a site with text links and a clear hierarchy, and make sure every page is reachable by at least one static text&nbsp;link</li>
<li>Create useful, unique and clearly written&nbsp;content</li>
<li>Make sure your title tags and ALT tags are descriptive and&nbsp;accurate</li>
<li>Maintain clean HTML&nbsp;code</li>
<li>Keep the outgoing links on a page under&nbsp;100</li>
<li>Make it easy for search bots to crawl your site without&nbsp;error</li>
<li>Make use of the robots.txt file to limit crawling on pages that aren’t useful to&nbsp;visitors</li>
<li>Make pages for users, not search&nbsp;engines</li>
</ol>
<p><span style="font-weight: bold">DON’T</span>
<ol>
<li>Don’t include broken links on your&nbsp;site</li>
<li>Don’t use hidden text or&nbsp;links</li>
<li>Don’t cloak or use sneaky&nbsp;redirects</li>
<li>Don’t load pages with keywords or phrases a.k.a&nbsp;spam</li>
<li>Don’t send automated queries to&nbsp;Google</li>
<li>Don’t create duplicate&nbsp;content</li>
<li>Don’t create pages that install Trojans, viruses,&nbsp;etc.</li>
<li>If you participate in an affiliate program, don’t provide duplicate, run-of-the-mill&nbsp;content</li>
<li>Don’t participate in linking schemes – bloggers are watching&nbsp;you!</li>
</ol>
<p>Source:&nbsp;<a href="http://www.seonoobs.com">seonoobs.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaextra.net/2008/workflow/tips-optimizing-seo/feed/</wfw:commentRss>
		</item>
	</channel>
</rss><!-- Dynamic Page Served (once) in 2.303 seconds --><!-- Cached page served by WP-Cache -->
