<?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>iBlog random &#187; site</title>
	<atom:link href="http://blog.zurka.us/tag/site/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.zurka.us</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 28 May 2013 20:28:47 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.6</generator>
		<item>
		<title>Make Your Titles Dynamic with PHP</title>
		<link>http://blog.zurka.us/make-your-titles-dynamic-with-php/</link>
		<comments>http://blog.zurka.us/make-your-titles-dynamic-with-php/#comments</comments>
		<pubDate>Tue, 26 May 2009 15:25:00 +0000</pubDate>
		<dc:creator>nasal</dc:creator>
				<category><![CDATA[Whatever]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.zurka.us/?p=938</guid>
		<description><![CDATA[When developing your website, if you want to rank well in search engines it is crucial that you use different titles for every sub-page you&#8217;ve got online. This is because these search engines (Google, MSN etc) love your titles and categorize your site based on them. This is good for SEO. This is a simple [&#8230;]]]></description>
				<content:encoded><![CDATA[<div style="padding-top:15px;padding-right:0px;padding-bottom:0px;padding-left:0px;;" class="linksalpha_widget">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=iBlog+random&link=http%3A%2F%2Fblog.zurka.us%2Fmake-your-titles-dynamic-with-php%2F&title=Make+Your+Titles+Dynamic+with+PHP&desc=When+developing+your+website%2C+if+you+want+to+rank+well+in+search+engines+it+is+crucial+that+you+use+different+titles+for+every+sub-page+you%27ve+got+online.+This+is+because+these+search+engines+%28Google%2C+MSN+etc%29+love+your+titles+and+categorize+your+site+based+on+them.+This+is+good+for+SEO.+This+is+a&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p>When developing your website, if you want to <strong>rank well</strong> in search engines it is crucial that you use <strong>different titles for every sub-page</strong> you&#8217;ve got online. This is because these search engines (Google, MSN etc) <strong>love your titles</strong> and categorize your site based on them. This is <strong>good for SEO</strong>.</p>
<p>This is a simple thing to accomplish using PHP but it really is very effective. I will put dumb text into them but you should use titles rich with keywords related to your niche.</p>
<pre class="brush: php">
$title = &#039;Welcome to our website!&#039;;
if (key($_REQUEST) == &#039;register&#039;) { $title = &#039;Register now&#039;; }
if (key($_REQUEST) == &#039;404&#039;) { $title = &#039;Error 404: The page is unavailable&#039;; }
if (key($_REQUEST) == &#039;about&#039;) { $title = &#039;Who we are, what we do&#039;; }
if (key($_REQUEST) == &#039;news&#039;) { $title = &#039;Recent news&#039;; }
</pre>
<p>This would work if you are using urls like yoursite.com/?register, ?news etc. What it does is set a variable <strong>$title</strong> which will include the text your define according to the page we are watching. Now we need to display it in our browser.</p>
<pre class="brush: html">
&lt;head&gt;
    &lt;title&gt;&lt;?= $title; ?&gt; - Your Company Name&lt;/title&gt;
&lt;/head&gt;
</pre>
<p>Pretty easy, isn&#8217;t it?</p>
<p>Oh and today I&#8217;ve found a <a href="http://waka.us/nvyzbr"><strong>FREE</strong> product</a> that helps you make some money with google, all you have to pay is less then $3 for shipping and handling and they mail it to you. The offer is only valid for the US though. <a href="http://waka.us/nvyzbr">Click here</a> if you are interested. It can do no harm if you&#8217;re serious about making some money online and $3 really isn&#8217;t something you could not afford!</p>
<p>Have swing!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zurka.us/make-your-titles-dynamic-with-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Use PHP To Display Page Content (LMAWT part 2)</title>
		<link>http://blog.zurka.us/use-php-to-display-page-content-lmawt-part-2/</link>
		<comments>http://blog.zurka.us/use-php-to-display-page-content-lmawt-part-2/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 15:27:16 +0000</pubDate>
		<dc:creator>nasal</dc:creator>
				<category><![CDATA[Whatever]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.zurka.us/?p=826</guid>
		<description><![CDATA[If you missed the previous posts, you can read the Introduction and First part to catch with us. What we are going to do today is make our links work and display the content depending on what link we click. First let&#8217;s make our links go live. In our final result of part 1, our [&#8230;]]]></description>
				<content:encoded><![CDATA[<div style="padding-top:15px;padding-right:0px;padding-bottom:0px;padding-left:0px;;" class="linksalpha_widget">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=iBlog+random&link=http%3A%2F%2Fblog.zurka.us%2Fuse-php-to-display-page-content-lmawt-part-2%2F&title=Use+PHP+To+Display+Page+Content+%28LMAWT+part+2%29&desc=If+you+missed+the+previous+posts%2C+you+can+read+the+Introduction+and+First+part+to+catch+with+us.+What+we+are+going+to+do+today+is+make+our+links+work+and+display+the+content+depending+on+what+link+we+click.+First+let%27s+make+our+links+go+live.+In+our+final+result+of+part+1%2C+our+links+were+dead.+To&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p>If you missed the previous posts, you can read the <a href="http://blog.zurka.us/lets-make-a-website-together/">Introduction</a> and <a href="http://blog.zurka.us/lets-make-a-website-together/">First part</a> to catch with us.</p>
<p>What we are going to do today is <strong>make our links work</strong> and display the content depending on what link we click.</p>
<p>First let&#8217;s make our links go live. In our <a href="http://blog.zurka.us/wp-content/uploads/2009/01/index41.html">final result</a> of part 1, our links were dead. To make a link work, we must use this syntax:</p>
<pre class="brush: html">
&lt;a href=&quot;./&quot;&gt;Home&lt;/a&gt;
&lt;a href=&quot;./?news&quot;&gt;News&lt;/a&gt;
&lt;a href=&quot;./?contact&quot;&gt;Contact&lt;/a&gt;
*** notice we use ?news for the news, ?contact for the contact page etc, will be explained later ***
</pre>
<p>So let&#8217;s change all of our links to this. Our final result will be <a href="http://blog.zurka.us/wp-content/uploads/2009/01/index51.html">this</a>. As you can see, the links are underlined and you can click on them. But if you click on them you will notice nothing really changes on the page, except for the URL in the browser.. that&#8217;s because we need our PHP code that will &#8220;read&#8221; the URL and display the content that comes along.</p>
<p>Let&#8217;s see the PHP code that we put into our <strong>#main-content</strong> div. To load different contents depending on what click we link on, we are going to use the <a href="http://php.net/switch" target="_blank">switch</a> function, which is not hard to understand, is very useful and works fast!</p>
<pre class="brush: php">
&lt;?php
switch (key($_REQUEST)) {

	case &#039;news&#039;:
		echo &#039;We will display our news here&#039;;
	break;

	case &#039;members&#039;:
		echo &#039;This will be the member list&#039;;
	break;

	// we continue like this for all our links
	// and finish with the default statement

	default:
	echo &#039;Welcome to my first website&#039;;

}
?&gt;
</pre>
<p>As I said before, put this code between inside your #main-content DIV.</p>
<p>&lt;div id=&#8221;main-content&#8221;&gt;<br />
&lt;?php switch () {} ?&gt;<br />
&lt;/div&gt;</p>
<p><strong>What will this piece of code do?</strong><br />
It will display different contents based on the page we are on. If, for example, we will click on our &#8220;news&#8221; link, the URL will change to &#8220;domain.com/?<strong>news</strong>&#8221; and the content that will be shown will be &#8220;<strong>news.php</strong>&#8220;, because of the &#8216;case&#8217; we wrote. In this case, what comes after the question mark in the URL is called a &#8220;query string&#8221; and we will work with these.</p>
<p>In this example we are using the &#8220;key($_REQUEST)&#8221; but we could change this to react to something like &#8220;domain.com/?page=news&#8221; and in this case we would use a different switch. Tell me if you want to know about it and I&#8217;ll write an example for this.</p>
<p>Anyway, check what we <a href="http://blog.zurka.us/wp-content/uploads/2009/01/page1.php">accomplished</a> now. We made our first working website, we could actually put whatever we would like inside, we are done. The content is changing and everything is working fine.</p>
<p>Any questions? Feel free to ask!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zurka.us/use-php-to-display-page-content-lmawt-part-2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Color meaning</title>
		<link>http://blog.zurka.us/color-meaning/</link>
		<comments>http://blog.zurka.us/color-meaning/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 14:36:04 +0000</pubDate>
		<dc:creator>nasal</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[colors]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[webmaster]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.zurka.us/?p=536</guid>
		<description><![CDATA[Did you ever wonder what color should your website be? Depending on what the content of the site is, different colors will suit best. I give you a list of colors, their meaning and what the human brain feels when it comes in contact with them. Red Red is the color associated with energy, strength, [&#8230;]]]></description>
				<content:encoded><![CDATA[<div style="padding-top:15px;padding-right:0px;padding-bottom:0px;padding-left:0px;;" class="linksalpha_widget">
											<iframe
												style="height:25px !important; border:0px solid gray !important; overflow:hidden !important; width:550px !important;" frameborder="0" scrolling="no" allowTransparency="true"
												src="http://www.linksalpha.com/social?blog=iBlog+random&link=http%3A%2F%2Fblog.zurka.us%2Fcolor-meaning%2F&title=Color+meaning&desc=Did+you+ever+wonder+what+color+should+your+website+be%3F+Depending+on+what+the+content+of+the+site+is%2C+different+colors+will+suit+best.+I+give+you+a+list+of+colors%2C+their+meaning+and+what+the+human+brain+feels+when+it+comes+in+contact+with+them.+Red+Red+is+the+color+associated+with+energy%2C+strength%2C&fc=333333&fs=arial&fblname=like&fblref=facebook&fbllang=en_US&fblshow=1&fbsbutton=1&fbsctr=1&fbslang=en&fbsendbutton=1&twbutton=1&twlang=en&twmention=&twrelated1=&twrelated2=&twctr=1&lnkdshow=noshow&lnkdctr=1&buzzbutton=1&buzzlang=en&buzzctr=1&diggbutton=1&diggctr=1&stblbutton=1&stblctr=1&g1button=1&g1ctr=1&g1lang=en-US">
											</iframe>
										</div><p>Did you ever wonder what color should your website be? Depending on what the content of the site is, different colors will suit best. I give you a list of colors, their meaning and what the human brain feels when it comes in contact with them.</p>
<p><strong style="color: red;">Red</strong></p>
<p>Red is the color associated with <strong>energy, strength, power, determination</strong> as well as <strong>passion, desire</strong>, and <strong>love</strong>.</p>
<p>Red brings text and images to the <strong>foreground</strong>. Use it as an accent color to <strong>stimulate</strong> people to make <strong>quick decisions</strong>; it is a perfect color for â€˜<strong>Buy Now</strong>â€™ or â€˜<strong>Click Here</strong>â€™ buttons on Internet banners and websites. In advertising, red is often used to evoke <strong>erotic feelings</strong> (red lips, red nails, red-light districts, â€˜Lady in Redâ€™, etc). This color is also commonly associated with energy, so you can use it when <strong>promoting energy drinks, games, cars</strong>, items related to <strong>sports</strong> and high <strong>physical activity</strong>.</p>
<p><strong>Light red</strong> represents joy, sexuality, passion, sensitivity, and love.<br />
<strong>Pink</strong> signifies romance, love, and friendship. It denotes feminine qualities and passiveness.<br />
<strong>Brown</strong> suggests stability and denotes masculine qualities.<br />
<strong>Reddish-brown</strong> is associated with harvest and fall.</p>
<p><span id="more-536"></span></p>
<p><strong style="color: orange;">Orange</strong></p>
<p>Orange combines the energy of red and the happiness of yellow. It is associated with <strong>joy, sunshine</strong>, and the <strong>tropics</strong>. Orange represents <strong>enthusiasm, fascination, happiness, creativity, determination, attraction, success, encouragement</strong>, and <strong>stimulation</strong>.</p>
<p>To the human eye, orange is a very hot color, so it gives the <strong>sensation of heat</strong>. Nevertheless, orange is not as aggressive as red. Orange <strong>increases oxygen supply to the brain</strong>, produces an <strong>invigorating effect</strong>, and stimulates <strong>mental activity</strong>. It is highly accepted among <strong>young people</strong>. As a citrus color, orange is associated with <strong>healthy food</strong> and stimulates <strong>appetite</strong>. Orange is the color of fall and harvest. In heraldry, orange is symbolic of <strong>strength and endurance</strong>.</p>
<p>Orange has very high visibility, so you can use it to <strong>catch attention and highlight</strong> the most important elements of your design. Orange is very effective for <strong>promoting food products</strong> and <strong>toys</strong>.</p>
<p><strong>Gold</strong> evokes the feeling of prestige. The meaning of gold is illumination, wisdom, and wealth. Gold often symbolizes high quality.</p>
<p><strong style="color: yellow;">Yellow</strong></p>
<p>Yellow is the color of <strong>sunshine</strong>. Itâ€™s associated with <strong>joy, happiness, intellect,</strong> and <strong>energy</strong>.</p>
<p>Yellow produces a <strong>warming effect</strong>, arouses <strong>cheerfulness</strong>, stimulates <strong>mental activity</strong>, and generates <strong>muscle energy</strong>. Yellow is often associated with <strong>food</strong>. Bright, <strong>pure yellow is an attention getter</strong>, which is the reason taxicabs are painted this color. Yellow is seen before other colors when placed against black; this combination is often used to issue a warning. In heraldry, yellow indicates <strong>honor</strong> and <strong>loyalty</strong>.</p>
<p>Use yellow to evoke <strong>pleasant, cheerful feelings</strong>. You can choose yellow to promote <strong>childrenâ€™s products</strong> and items related to <strong>leisure</strong>. Yellow is very effective for <strong>attracting attention</strong>, so use it to highlight the most important elements of your design.</p>
<p><strong>Light yellow</strong> is associated with intellect, freshness, and joy.</p>
<p><strong style="color: green;">Green</strong></p>
<p>Green is the color of <strong>nature</strong>. It symbolizes <strong>growth, harmony, freshness,</strong> and <strong>fertility</strong>. Green has strong emotional correspondence with <strong>safety</strong>. Dark green is also commonly associated with <strong>money</strong>.</p>
<p>Green has great <strong>healing power</strong>. It is the <strong>most restful color for the human eye</strong>; it can improve vision. Green suggests <strong>stability</strong> and <strong>endurance</strong>. Green, as opposed to red, means safety; it is the color of free passage in road traffic.</p>
<p>Use green to indicate safety when advertising drugs and medical products. Green is directly related to nature, so you can use it to <strong>promote â€˜greenâ€™ products</strong>. Dull, darker green is commonly associated with money, the financial world, banking, and Wall Street.</p>
<p><strong>Aqua</strong> is associated with emotional healing and protection.<br />
<strong>Olive</strong> green is the traditional color of peace.</p>
<p><strong style="color: navy;">Blue</strong></p>
<p>Blue is the color of the <strong>sky and sea</strong>. It is often associated with <strong>depth and stability</strong>. It symbolizes <strong>trust, loyalty, wisdom, confidence, intelligence, faith, truth,</strong> and <strong>heaven</strong>.</p>
<p>Blue is considered <strong>beneficial to the mind and body</strong>. It slows human metabolism and <strong>produces a calming effect</strong>. Blue is strongly associated with <strong>tranquility and calmness</strong>.</p>
<p>You can use blue to <strong>promote products and services related to cleanliness</strong> (water purification filters, cleaning liquids, vodka), <strong>air and sky</strong> (airlines, airports, air conditioners), <strong>water and sea</strong> (sea voyages, mineral water). As opposed to emotionally warm colors like red, orange, and yellow; blue is linked to consciousness and intellect. Use blue to <strong>suggest precision</strong> when promoting high-tech products.</p>
<p>Blue is a masculine color; according to studies, it is <strong>highly accepted among males</strong>. <strong>Dark blue</strong> is associated with depth, expertise, and stability.</p>
<p><strong>Light blue</strong> is associated with health, healing, tranquility, understanding, and softness.<br />
<strong>Dark blue</strong> represents knowledge, power, integrity, and seriousness.</p>
<p><strong style="color: purple;">Purple</strong></p>
<p>Purple combines the stability of blue and the energy of red. Purple is associated with <strong>royalty</strong>. It symbolizes <strong>power, nobility, luxury, and ambition</strong>. It conveys <strong>wealth and extravagance</strong>. Purple is associated with <strong>wisdom, dignity, independence, creativity, mystery, and magic</strong>.</p>
<p>According to surveys, almost 75 percent of pre-adolescent children prefer purple to all other colors. Purple is a very rare color in nature; some people consider it to be artificial.</p>
<p><strong>Light purple</strong> is a good choice for a feminine design. You can use bright purple when promoting childrenâ€™s products.</p>
<p><strong>Light purple</strong> evokes romantic and nostalgic feelings.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zurka.us/color-meaning/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
