<?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>Umbrella Development</title>
	<atom:link href="http://www.umbrella-development.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.umbrella-development.com</link>
	<description></description>
	<lastBuildDate>Tue, 08 Dec 2009 03:00:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Member Profiles &#8211; Default Tabs?</title>
		<link>http://www.umbrella-development.com/2009/12/member-profiles-default-tabs/</link>
		<comments>http://www.umbrella-development.com/2009/12/member-profiles-default-tabs/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 02:40:33 +0000</pubDate>
		<dc:creator>Umbrella</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[iLance]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[ilance]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.grimeygames.com/umdev/?p=127</guid>
		<description><![CDATA[It was recently asked in the iLance forums how to set which tab is the default that appears on a members profile when someone clicks the link. Our goal here is to make the Full Profile tab be our default visible tab whenever someone clicks a username link to go to their profile. There are several ways to [...]]]></description>
			<content:encoded><![CDATA[<p>It was recently asked in the<a href="http://www.ilance.com/forum/showthread.php?p=33976&amp;posted=1#post33976" target="_blank"> iLance forums</a> how to set which tab is the default that appears on a members profile when someone clicks the link. Our goal here is to make the Full Profile tab be our default visible tab whenever someone clicks a username link to go to their profile. There are several ways to accomplish this, so lets review them.</p>
<p>First we need to know how iLance prints the username and it&#8217;s associated link. One might think it&#8217;s straight forward, and that editing the html template will do the trick. Sorry, that&#8217;s not the case. With a little digging you will find that iLance prints the users name and profile link with a function called <strong>print_username</strong>. You&#8217;ll find this function in the <strong>functions/core/</strong> directory buried in the <strong>functions.php</strong> file.</p>
<p>The function accepts a number of parameters which you can see in the code below:</p>
<pre class="brush: php;"> 

function print_username($userid, $mode = 'href', $bold = 0, $extra = '', $extraseo = '', $displayname = '')
{
</pre>
</pre>
<ol>
<li>The userid...simple enough.</li>
<li>The Mode, upon reviewing the code you will find that there are several modes for this function to handle. those being:<br />
<strong>href, plain, custom, and url</strong>.</li>
<li>bold. A simple 1 or 0 will tell the function whether or not to make the link bold.</li>
<li>extra: allows us to pass custom parameters to the url that will be placed inside the link</li>
<li>extraseo: allows us to pass custom parameters to the url and will display the url and not return a link.</li>
<li>The final one doesn't even warrant an explaination. <img src='http://www.umbrella-development.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ol>
<p>Now that we know our function lets look at a couple different ways to acheive our goal. The first and simplest approach is to hack the function to make it do what we want. Simple enough. I personally am not using SEO currently so in this example I will only show how to alter the regular links.</p>
<p>First we need to find everywhere in the code where we are building the link I've highlighted the relevant lines below so you can see what I'm talking about.</p>
<pre class="brush: php; first-line: 3946; highlight: [3969,3996,4008];">

function print_username($userid, $mode = 'href', $bold = 0, $extra = '', $extraseo = '', $displayname = '')
{
        global $ilance, $myapi, $ilpage, $ilconfig;
       
        $username = fetch_user('username', intval($userid));
        $html = '';
       
        // modes: href and plain
        if (isset($mode) AND $mode == 'href')
        {
                $displayname = $username;
                // bold usernames?
                if (!empty($bold) AND $bold)
                {
                        $displayname = '&lt;strong&gt;'.$username.'&lt;/strong&gt;';
                }
                // does admin use SEO urls?
                if ($ilconfig['globalauctionsettings_seourls'])
                {
                        $html .= '&lt;a href=&quot;' . ((PROTOCOL_REQUEST == 'https') ? HTTPS_SERVER : HTTP_SERVER) . print_seo_url($ilconfig['memberslistingidentifier']) . '/' . construct_seo_url_name($username) . $extraseo . '&quot; rel=&quot;nofollow&quot;&gt;' . $displayname . '&lt;/a&gt; ' . construct_username_bits(intval($userid));
                }
                else
                {
                        $html .= '&lt;a href=&quot;' . ((PROTOCOL_REQUEST == 'https') ? HTTPS_SERVER : HTTP_SERVER) . $ilpage['members'] . '?id=' . intval($userid) . $extra . '&amp;profile=1&quot; rel=&quot;nofollow&quot;&gt;' . $displayname . '&lt;/a&gt; ' . construct_username_bits(intval($userid));
                }   
        }
        else if (isset($mode) AND $mode == 'plain')
        {
                $displayname = $username;
                // bold usernames?
                if (!empty($bold) AND $bold)
                {
                        $username = '&lt;strong&gt;'.$displayname.'&lt;/strong&gt;';
                }
                $html = $username;
        }
        else if (isset($mode) AND $mode == 'custom')
        {
                // bold usernames?
                if (!empty($bold) AND $bold)
                {
                        $displayname = '&lt;strong&gt;'.$displayname.'&lt;/strong&gt;';
                }
                // does admin use SEO urls?
                if ($ilconfig['globalauctionsettings_seourls'])
                {
                        $html .= '&lt;a href=&quot;' . ((PROTOCOL_REQUEST == 'https') ? HTTPS_SERVER : HTTP_SERVER) . print_seo_url($ilconfig['memberslistingidentifier']) . '/' . construct_seo_url_name($username) . $extraseo . '&quot; rel=&quot;nofollow&quot;&gt;' . $displayname . '&lt;/a&gt;';
                }
                else
                {
                        $html .= '&lt;a href=&quot;' . ((PROTOCOL_REQUEST == 'https') ? HTTPS_SERVER : HTTP_SERVER) . $ilpage['members'] . '?id=' . intval($userid) . $extra . '&quot; rel=&quot;nofollow&quot;&gt;' . $displayname . '&lt;/a&gt;';
                }
        }
        else if (isset($mode) AND $mode == 'url')
        {
                // does admin use SEO urls?
                if ($ilconfig['globalauctionsettings_seourls'])
                {
                        $html .= ((PROTOCOL_REQUEST == 'https') ? HTTPS_SERVER : HTTP_SERVER) . print_seo_url($ilconfig['memberslistingidentifier']) . '/' . construct_seo_url_name($username) . $extraseo;
                }
                else
                {
                        $html .= ((PROTOCOL_REQUEST == 'https') ? HTTPS_SERVER : HTTP_SERVER) . $ilpage['members'] . '?id=' . intval($userid) . $extra;
                }
        }
       
        return $html;
}
</pre>
<p> </p>
<p>Now we need to alter the code. Lets take our first highlighted line as an example:</p>
<pre class="brush: php;">

$html .= '&lt;a href=&quot;' . ((PROTOCOL_REQUEST == 'https') ? HTTPS_SERVER : HTTP_SERVER) . $ilpage['members'] . '?id=' . intval($userid) . $extra . '&quot; rel=&quot;nofollow&quot;&gt;' . $displayname . '&lt;/a&gt; ' . construct_username_bits(intval($userid));
</pre>
<p>make it look like this:</p>
<pre class="brush: php;">

$html .= '&lt;a href=&quot;' . ((PROTOCOL_REQUEST == 'https') ? HTTPS_SERVER : HTTP_SERVER) . $ilpage['members'] . '?id=' . intval($userid) . $extra . '&amp;profile=1&quot; rel=&quot;nofollow&quot;&gt;' . $displayname . '&lt;/a&gt; ' . construct_username_bits(intval($userid));
</pre>
<p>If you look closely you will notice right after the <strong>$extra.'</strong> we added <strong>&amp;profile=1"</strong> so now it looks like this <strong>$extra . '&amp;profile=1"</strong></p>
<p>Now just do this for all three highlighted areas in the code and you're done! Right? Well, yes and no. You are if you don't mind a hackjob. The more elegant way to do this and the way it was meant to be used, albeit the more time consuming method is to use the function as it is supposed to be used. By setting the parameters the way you want them set when you call the function.</p>
<p>What did he just say?!!</p>
<p>Simple, throughout the iLance script the <strong>print_username</strong> function is called. Do a find all with your favorite editor and then recode the calls to the functions so they provide the desired results. Of course this is also the more code intense way as well and you will need to be familiar with php and html.</p>
<p>For example, the forum ask's how this can be achieved from auction area. So for example we will use a product or forward auction as an example. Navigate to a product auction on your marketplace. You will note that the page in the url that you are looking at is <strong>merch.php</strong>, open that file, follow the code to the correct template. In our case the template is <strong>listing_forward_auction.html</strong> now open that up. Follow the template html to where the link is appearing. You will find it is actually being parsed into the template as a variable called <strong>{seller}</strong></p>
<pre class="brush: xml;">

{apihook[seller_infobit_table_start]}
        
        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;9&quot; cellspacing=&quot;1&quot;&gt;
        &lt;tr&gt;
            &lt;td width=&quot;35%&quot;&gt;&lt;span style=&quot;font-family: arial; font-size:15px;&quot;&gt;&lt;strong&gt;{seller}&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;
</pre>
<p>Now if we go back the the merch.php file, and scroll up until we find where $seller is being set we will find something like this:</p>
<pre class="brush: php; first-line: 1469;">
$seller = print_username($res_project_user['user_id'], 'href', 0, '', '');
</pre>
<p>Now we would want to update this code to looke like this</p>
<pre class="brush: php; first-line: 1469;">
$seller = print_username($res_project_user['user_id'], 'href', 0, '&amp;profile=1', '');
</pre>
<p> </p>
<p>Now you would just have to do this simple little change all over the place. The trick is finding where you want to do it and everywhere it occurs. How to accomplish this falls outside the realm of this tutorial, but hey, you're an iLancer, which means you'll find a way! The only real problem with this, is when you upgrade your changes will be over-written so make sure you make good notes of where you changed things.</p>
<p> </p>
<p>Hope this tutorial helped some people. Now I turn it over to you, discuss...</p>
]]></content:encoded>
			<wfw:commentRss>http://www.umbrella-development.com/2009/12/member-profiles-default-tabs/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Adding to Daily Auction Newsletters</title>
		<link>http://www.umbrella-development.com/2009/12/adding-to-daily-auction-newsletters/</link>
		<comments>http://www.umbrella-development.com/2009/12/adding-to-daily-auction-newsletters/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 01:44:22 +0000</pubDate>
		<dc:creator>Umbrella</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[iLance]]></category>
		<category><![CDATA[Addon]]></category>
		<category><![CDATA[ilance]]></category>
		<category><![CDATA[Premiere]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.grimeygames.com/umdev/?p=76</guid>
		<description><![CDATA[I was recently asked by a client who purchased our Premiere addon how they could update their cron_daily_auction_newsletter email template so that the listing includes whether or not the New projects are premiere only or not. So I thought I would share that information here, incase anyone else has a similar request.
This tutorial is being [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently asked by a client who purchased our Premiere addon how they could update their cron_daily_auction_newsletter email template so that the listing includes whether or not the New projects are premiere only or not. So I thought I would share that information here, incase anyone else has a similar request.</p>
<p>This tutorial is being written for ilance version 3.1.9, while it should stand true for 3.1.8 and the upcoming 3.2.0, you should make sure you pay extra close attention to your files if you aren&#8217;t using a vanilla installation of iLance 3.1.9.</p>
<p>Now, we will want to open up our<strong> class.subscription.inc.php </strong>located in the <strong>root/functions/api</strong> directory of your site.</p>
<p>Next you will want to do a Find (cntrl+f) for <strong>cron_daily_auction_newsletter</strong>, your first location should be around line #1948. This is where the iLance system kicks off who get&#8217;s which daily service auction announcements from the site for their selected categories. Of course this spot in the code really just loads the template from the database and then replaces variable parameters with actual information which is created prior to this snippet of code.</p>
<p><strong>Step 1:</strong></p>
<pre class="brush: php; first-line: 1945; highlight: [1948];">
// email user
$ilance-&gt;email-&gt;mail = $seller['email'];
$ilance-&gt;email-&gt;slng = fetch_user_slng($seller['user_id']);
$ilance-&gt;email-&gt;get('cron_daily_auction_newsletter');
$ilance-&gt;email-&gt;set(array(
'{{newsletterbody}}' =&gt; $messagebody,
'{{total}}' =&gt; count($projectsToSend),
));

$ilance-&gt;email-&gt;send();
</pre>
<p><strong>Step 2:</strong><br />
So now that we have a starting point, we need to scroll back up in the file to around line #1894 <em>(your line numbers may very)</em> where you will find the following code:</p>
<pre class="brush: php; first-line: 1894; highlight: [1948];">
if ($ilance-&gt;db-&gt;num_rows($buyerinfo) &gt; 0)
{
     $res_buyer_name = $ilance-&gt;db-&gt;fetch_array($buyerinfo);&lt;/pre&gt;
$messagebody .= strip_vulgar_words(un_htmlspecialchars(stripslashes($project['project_title']))) . &quot;\n&quot;;

// todo: check for seo

$messagebody .= HTTP_SERVER . &quot;rfp.php?id=&quot; . $project['project_id'] . &quot;\n&quot;;

$messagebody .= $phrase['_category'] . &quot;: &quot; . $ilance-&gt;categories-&gt;title(fetch_user_slng($seller['user_id']), 'service', $project['cid']) . &quot;\n&quot;;

$messagebody .= $phrase['_buyer'] . &quot;: &quot; . $res_buyer_name['username'] . &quot;\n&quot;;

$messagebody .= $phrase['_time_left'] . &quot;: &quot; . $ilance-&gt;auction-&gt;auction_timeleft($project['project_id'], '', '', 0, 0, 1) . &quot;\n&quot;;

$messagebody .= &quot;************\n&quot;;

}
</pre>
<p><strong>Step 3:<br />
</strong>Now we need to edit the code from above. You can put it anywhere in there really, but we will put it after the category for our example. First we will check to see if this is a premiere only auction. Do do this we will write the following code.</p>
<pre class="brush: php;">

if($project['premiere_only'] == 1)
{

}
</pre>
<p>We will then create our additional text if the if statement is valid.</p>
<pre class="brush: php;">
if($project['premiere_only'] == 1)
{
$messagebody .= &quot;Project Type: Premiere Only\n&quot;;
}
</pre>
<p>If we want to keep our listings similar we could add an else statement as well like so&#8230;</p>
<pre class="brush: php;">
if($project['premiere_only'] == 1)
{
$messagebody .= &quot;Project Type: Premiere Only\n&quot;;
}else{
$messagebody .= &quot;Project Type: Standard\n&quot;;
}
</pre>
<p><strong>Putting it all together:</strong></p>
<pre class="brush: php; first-line: 1894;">
if ($ilance-&gt;db-&gt;num_rows($buyerinfo) &gt; 0)
{
$res_buyer_name = $ilance-&gt;db-&gt;fetch_array($buyerinfo);&lt;/pre&gt;
$messagebody .= strip_vulgar_words(un_htmlspecialchars(stripslashes($project['project_title']))) . &quot;\n&quot;;

// todo: check for seo

$messagebody .= HTTP_SERVER . &quot;rfp.php?id=&quot; . $project['project_id'] . &quot;\n&quot;;

$messagebody .= $phrase['_category'] . &quot;: &quot; . $ilance-&gt;categories-&gt;title(fetch_user_slng($seller['user_id']), 'service', $project['cid']) . &quot;\n&quot;;
if($project['premiere_only'] == 1)
{
$messagebody .= &quot;Project Type: Premiere Only\n&quot;;
}else{
$messagebody .= &quot;Project Type: Standard\n&quot;;
}

$messagebody .= $phrase['_buyer'] . &quot;: &quot; . $res_buyer_name['username'] . &quot;\n&quot;;

$messagebody .= $phrase['_time_left'] . &quot;: &quot; . $ilance-&gt;auction-&gt;auction_timeleft($project['project_id'], '', '', 0, 0, 1) . &quot;\n&quot;;

$messagebody .= &quot;************\n&quot;;

}
</pre>
<div id="authorbox">
<h3>About Premiere Only Addon</h3>
<p>Premiere Only Addon for iLance 3.1.9 allows you, the marketplace owner, to select various subscription plan types as Premiere Accounts. Once these are established your marketplace members will have the option to allow only Premiere members to bid on their Service Auctions, which in turn encourages non premiere members to upgrade their accounts. </p>
<div class="clear"> </div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.umbrella-development.com/2009/12/adding-to-daily-auction-newsletters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automation &#8211; Saving Jobs &amp; Money</title>
		<link>http://www.umbrella-development.com/2009/12/automation-saving-jobs-money/</link>
		<comments>http://www.umbrella-development.com/2009/12/automation-saving-jobs-money/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 00:21:48 +0000</pubDate>
		<dc:creator>Umbrella</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[automation]]></category>

		<guid isPermaLink="false">http://www.grimeygames.com/umdev/?p=41</guid>
		<description><![CDATA[In times of such economic hardship, businesses find themselves having to make some tough decisions. What to cut, where to cut it from and even whether or not to keep the doors open. Unfortunately just like the radio, teevee and other media are telling us, these times are here. It&#8217;s no longer a whisper on [...]]]></description>
			<content:encoded><![CDATA[<p>In times of such economic hardship, businesses find themselves having to make some tough decisions. What to cut, where to cut it from and even whether or not to keep the doors open. Unfortunately just like the radio, teevee and other media are telling us, these times are here. It&#8217;s no longer a whisper on the wind or a murmur around the water cooler; nope, its here and it doesn&#8217;t look like the problems are going to be solved in the short term.</p>
<p>But what can a business owner do to cut costs, stay profitable and help keep his fellow employees, employeed?</p>
<p>While there aren&#8217;t a lot of options out there, and there&#8217;s certainly no one single answer that spans the gap for all business models. There is one option for those businesses with high rates of data entry and repetative office work and its called Automation. Automation is and always has been about saving: time, money and hopefully jobs. Many employees will cringe at the idea of having their job automated, thinking to themselves; &#8220;Oh great, now they don&#8217;t need me!&#8221;. Believe me, I know. Several years ago it was my primary function at my employers to sit with the various clerical employees, review their workload and assess what could be done to increase their productivity. Of course the employees I sat with looked at me as if I was death incarnate. Needless to say, I wasn&#8217;t the most popular person in the office.</p>
<p>Of course what they didn&#8217;t realize was I wasn&#8217;t taking away their jobs. But instead, I was making them more productive, freeing them up to perform other tasks and therefore making the business more profitable as a whole. By freeing up existing employees to perform other tasks, I was saving my employer from needing to hire further help. I personally believe that I very well could have been saving their jobs.</p>
<p>So now you may be wondering &#8220;<em>how can I automate my office?</em>&#8221;</p>
<p>The simplest approach is to focus on automating those business processes that are most time-consuming, costly, or profit-generating. At times, the choice will also depend upon the cost and complexity of the proposed software and services. To help cut some of your development cost, I cannot stress enough, the importance of defining and documenting the manual process toroughly prior to bringing in your chosen developer. It is typically less expensive to document the process in-house, rather than having your developer do it for you. Once you have your shiny new documentation to pass to your developer, they will be armed with exactlly what they need to give you an accurate estimate, as it will take out much of their guess work. So once again, I would emphasize that it&#8217;s important that the manual process be well defined before automating.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.umbrella-development.com/2009/12/automation-saving-jobs-money/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design vs Development</title>
		<link>http://www.umbrella-development.com/2009/12/design-vs-development/</link>
		<comments>http://www.umbrella-development.com/2009/12/design-vs-development/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 00:14:08 +0000</pubDate>
		<dc:creator>Umbrella</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[opinions]]></category>

		<guid isPermaLink="false">http://www.grimeygames.com/umdev/?p=36</guid>
		<description><![CDATA[Even though most clients will know exactly what they want their new web site to do, and have an idea of how they want it to look, very few of these clients give any real thought as to what kind of services they require to bring this new web site to life. This doesn&#8217;t stem from lack [...]]]></description>
			<content:encoded><![CDATA[<p>Even though most clients will know exactly what they want their new web site to do, and have an idea of how they want it to look, very few of these clients give any real thought as to what kind of services they require to bring this new web site to life. This doesn&#8217;t stem from lack of thought or planning, but from a lack of understanding some basic differences between titles and services. In most cases the client is a new comer to the industry and lacks understanding of industry terms, which is to be expected, after all its probably not their industry. For instance the terms &#8216;web design&#8217; and &#8217;web development&#8217; seem very similar to someone not in the field of web technologies. But, in reality they actually mean two very different things. So when you are looking for someone to create your website, its important to know the difference, and we are hoping this article will shed some light on those differences and assist you in selecting a service provider that is right for your project and capable of doing the job to your expectations.</p>
<p> </p>
<h3>Web design</h3>
<p>Web Design is the art of making websites that are attractive and easy to navigate. A Web Designer will have a knowledge of HTML and the tools and skills required to create a website. They will have an even better knowledge of design theory and a firm grasp on those tools required to make stunning graphics and eye-catching layouts. More often than not they will possess a firm understanding of javascript, cascading style sheets and whats needed to bring your website to fruition. In short with a good designer on hand you will get a great looking website that users will be able to navigate with ease.</p>
<h3>Web development</h3>
<p>Web Deveopment is making websites that Perform a variety of functions and procedures, a site that DOES something. Quite often websites will require logging in, e-commerce capabilities like a shopping cart, monetary transaction handling, consuming other website&#8217;s information, forums and many other tools or features that users of the site will find useful. Virtually anything you can imagine or have seen a website DO was created by a Web Developer. With a good Developer, you’ll get a nice looking site that provides a truly unique experience that puts you above your competition in the eyes of potential customers.</p>
<p>In the internets childhood, business&#8217; began to realize the need for web presence, but lacked the foresight to see its full potential. Jumping on the band-wagon as it were, they secured Web Designers to create their internet presence. However, just like a child the internet has matured and so has its abilities. It seems now more than ever companies are realizing that their original brochure style websites, which were top of the line at one point, are now stale and antiquated. Modern day websites have changed focus. Where old style websites weren&#8217;t much more than a brochure providing the customer with information about the company, websites of today are focused on helping that customer interact with the company or solve a problem.</p>
<p>Over the past couple of years there&#8217;s been a major shift for these old brochure businesses. Wanting to update to a website that provides solutions for their customers, they want a website that their customers will find useful. Re-positioning their budget from web marketing to one time visitors, the invest equal or lesser amounts into a website that their users will find engaging and useful. A website that customers will want to visit, favorite and tell everyone about.</p>
<p>Now this isn&#8217;t to say that brochure websites are completely out-dated, they do still have a place in the modern arena, but that place has seemed to shrink, especially at the corporate level. Should you decide your sites value can been obtained strictly though static content with a beautiful site, then a Web Designer may be what you&#8217;re interested in. But if you want a site that is both engaging and provides real interaction with your customers, then I would recommend seeking a Web Developer to bring your business to life with interaction.</p>
<h3>In Closing</h3>
<p>So when planning your website, give some real thought to what you want the site to DO. Reference other websites that rank high in the search engines for your industry and see what it is that their websites do. Typically these sites have already made the investment to update their sites to provide their customers with an engaging and valuable user experience, and who knows it might even give you more idea&#8217;s for your own site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.umbrella-development.com/2009/12/design-vs-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
