<?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>Web development &#187; Code Lt</title>
	<atom:link href="http://sourcecodemoney.com/tag/code-lt/feed/" rel="self" type="application/rss+xml" />
	<link>http://sourcecodemoney.com</link>
	<description>Use source code for money</description>
	<lastBuildDate>Mon, 21 Nov 2011 12:03:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Joomla detect if home page</title>
		<link>http://sourcecodemoney.com/joomla-detect-if-home-page/php-code/</link>
		<comments>http://sourcecodemoney.com/joomla-detect-if-home-page/php-code/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 16:21:34 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PHP code]]></category>
		<category><![CDATA[Code Lt]]></category>
		<category><![CDATA[Current]]></category>
		<category><![CDATA[Echo]]></category>
		<category><![CDATA[Joomla Home Page]]></category>
		<category><![CDATA[Php Server]]></category>
		<category><![CDATA[Request Uri]]></category>
		<category><![CDATA[Server Request]]></category>

		<guid isPermaLink="false">http://sourcecodemoney.com/?p=58</guid>
		<description><![CDATA[		<link href="http://sourcecodemoney.com/wp-content/plugins/diggme/css.css" rel="stylesheet" type="text/css" />
		To detect if current page is Joomla hage page, do this code: &#60;?php $uri = $_SERVER['REQUEST_URI']; if ($uri == &#8220;/&#8221;) { echo &#8220;You&#8217;re on the homepage&#8221;; } ?&#62;]]></description>
			<content:encoded><![CDATA[		<link href="http://sourcecodemoney.com/wp-content/plugins/diggme/css.css" rel="stylesheet" type="text/css" />
		<div id="diggbutton"><a href="http://digg.com/submit?phase=2&amp;url=http://sourcecodemoney.com/joomla-detect-if-home-page/php-code/"><img src="http://sourcecodemoney.com/wp-content/plugins/diggme/digg.png"></a></div><p>To detect if current page is Joomla hage page, do this code:</p>
<div id="code">&lt;?php<br />
$uri = $_SERVER['REQUEST_URI'];<br />
if ($uri == &#8220;/&#8221;) {<br />
echo &#8220;You&#8217;re on the homepage&#8221;;<br />
}<br />
?&gt;</div>
]]></content:encoded>
			<wfw:commentRss>http://sourcecodemoney.com/joomla-detect-if-home-page/php-code/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to use different css on different browser</title>
		<link>http://sourcecodemoney.com/how-to-use-different-css-on-different-browser/php-code/</link>
		<comments>http://sourcecodemoney.com/how-to-use-different-css-on-different-browser/php-code/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 05:02:27 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[PHP code]]></category>
		<category><![CDATA[Browser Compatibility]]></category>
		<category><![CDATA[Code Lt]]></category>
		<category><![CDATA[Css Style]]></category>
		<category><![CDATA[Download Full]]></category>
		<category><![CDATA[Endif]]></category>
		<category><![CDATA[Gte]]></category>
		<category><![CDATA[Ie 6]]></category>
		<category><![CDATA[Ie6]]></category>
		<category><![CDATA[Ie8]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Lte]]></category>
		<category><![CDATA[Spesific]]></category>
		<category><![CDATA[Style Css]]></category>
		<category><![CDATA[Style Type]]></category>

		<guid isPermaLink="false">http://sourcecodemoney.com/?p=62</guid>
		<description><![CDATA[		<link href="http://sourcecodemoney.com/wp-content/plugins/diggme/css.css" rel="stylesheet" type="text/css" />
		Cross Browser Compatibility is a huge issue in the website development with many browsers in the market. But luckily most of them uses Internet Explorer and Firefox. Sometimes different version of browser also have different output like the display in IE8 and IE6. To tackle this you can use different css for different browser. Here&#8217;s [...]]]></description>
			<content:encoded><![CDATA[		<link href="http://sourcecodemoney.com/wp-content/plugins/diggme/css.css" rel="stylesheet" type="text/css" />
		<div id="diggbutton"><a href="http://digg.com/submit?phase=2&amp;url=http://sourcecodemoney.com/how-to-use-different-css-on-different-browser/php-code/"><img src="http://sourcecodemoney.com/wp-content/plugins/diggme/digg.png"></a></div><p>Cross Browser Compatibility is a huge issue in the website development with many browsers in the market. But luckily most of them uses Internet Explorer and Firefox. Sometimes different version of browser also have different output like the display in IE8 and IE6. To tackle this you can use different css for different browser.</p>
<p>Here&#8217;s the code:</p>
<div id="code">&lt;!&#8211;[if lte IE 6]&gt;<br />
&lt;style type=&#8221;text/css&#8221; media=&#8221;screen&#8221;&gt;<br />
@import &#8220;ie.css&#8221;;<br />
&lt;/style&gt;<br />
&lt;![endif]&#8211;&gt;</div>
<div></div>
<div></div>
<div><em><strong>if lte IE 6 </strong></em>means if browser is lower than equal (<strong>lte</strong>) IE 6. If you want to use the css specifically to IE 6 then:  <em><strong>&lt;!&#8211;[if IE 6]&gt;. </strong></em>There are also <strong>gte </strong>(greater then equal) for browser above or equal a spesific browser. Here&#8217;s the summary:</div>
<div>
<ul>
<li>lte IE 6 -&gt; IE 6 and all version lower</li>
<li>lt IE 6  -&gt; version below IE 6</li>
<li>IE 6 -&gt; only IE 6</li>
<li>gt IE 6 -&gt; version higher IE 6</li>
<li>gte IE 6 -&gt; IE 6 and all version higher</li>
</ul>
</div>
<div></div>
<div>Download the full code <a href="http://sourcecodemoney.com/doc/browser.zip">here</a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://sourcecodemoney.com/how-to-use-different-css-on-different-browser/php-code/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google maps code sample</title>
		<link>http://sourcecodemoney.com/google-maps-code-sample/php-code/</link>
		<comments>http://sourcecodemoney.com/google-maps-code-sample/php-code/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 12:24:11 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PHP code]]></category>
		<category><![CDATA[Amp]]></category>
		<category><![CDATA[Api]]></category>
		<category><![CDATA[Code Lt]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Google Maps Code]]></category>
		<category><![CDATA[Google Maps Example]]></category>
		<category><![CDATA[Google Maps Sample]]></category>
		<category><![CDATA[Key Change]]></category>
		<category><![CDATA[Script Src]]></category>
		<category><![CDATA[Text Javascript]]></category>

		<guid isPermaLink="false">http://sourcecodemoney.com/?p=23</guid>
		<description><![CDATA[		<link href="http://sourcecodemoney.com/wp-content/plugins/diggme/css.css" rel="stylesheet" type="text/css" />
		This article is a sample for google maps. You just need to download the code here. In the example, I show Google Headquarters in Google Maps. But before you download, you need to sign up for Google Maps API here and get a key that you will use in the code. From the code that [...]]]></description>
			<content:encoded><![CDATA[		<link href="http://sourcecodemoney.com/wp-content/plugins/diggme/css.css" rel="stylesheet" type="text/css" />
		<div id="diggbutton"><a href="http://digg.com/submit?phase=2&amp;url=http://sourcecodemoney.com/google-maps-code-sample/php-code/"><img src="http://sourcecodemoney.com/wp-content/plugins/diggme/digg.png"></a></div><p>This article is a sample for google maps. You just need to download the code <a href="http://uploading.com/files/808VILE7/googlemaps.zip.html">here</a>. In the example, I show Google Headquarters in Google Maps. But before you download, you need to sign up for Google Maps API <a href="http://code.google.com/apis/maps/signup.html">here</a> and get a key that you will use in the code. From the code that you have download, find the following code:</p>
<p><strong><em>&lt;script src=&#8221;http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;key=change-this-to-your-google-api&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;</em></strong></p>
<p>and change &#8220;change-this-to-your-google-api&#8221; to your key. If you have any problem just comment below.</p>
]]></content:encoded>
			<wfw:commentRss>http://sourcecodemoney.com/google-maps-code-sample/php-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

