<?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 Tutorials, Resources, Web Trends, Code Snippets, Php scripts, Opensource, Ecommerce, Cms, Html, Xhtml scripts, Themes, Templates, Css, Psd tuts, Photoshop,tuts,web,website,tutorial,web tutorial &#187; Php</title>
	<atom:link href="http://www.freshtuts.net/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.freshtuts.net</link>
	<description>Web design resources snippets of codes like php css html xml xhtml and tutorials on howto design sites and freebies of icons templates psd files psd templates themes</description>
	<lastBuildDate>Fri, 16 Dec 2011 19:44:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>For radio station DJ&#8217;s or Shows</title>
		<link>http://www.freshtuts.net/for-radio-station-djs-or-shows/</link>
		<comments>http://www.freshtuts.net/for-radio-station-djs-or-shows/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 14:18:11 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Php Scripts]]></category>
		<category><![CDATA[dj]]></category>
		<category><![CDATA[on air]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[show]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=4604</guid>
		<description><![CDATA[
The following script will allow radio station&#8217;s website to display ...]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-4605" src="http://www.freshtuts.net/wp-content/uploads/2010/03/OnAir.jpg" alt="OnAir" width="400" height="300" /></p>
<p>The following script will allow radio station&#8217;s website to display the show or dj&#8217;s that is currently on air.<br />
To use this code make sure your page has .php extention not .html</p>
<p><strong>Paste the code in the region you would like to display the ON AIR dj or the show.</strong></p>
<pre class="brush: php">&lt;?php
$h = date(&#039;G&#039;); //set variable $h to the hour of the day
$d = date(&#039;w&#039;); //set variable $d to the day of the week.
$year = date(&#039;Y&#039;); //set variable $year to the current year
//G is the date key for hours in 24 format (not 12), with no leading 0s, like 02.
// Adjust 2 hour offset for MST below.
$h = $h-2;

// MONDAY SCHEDULE
if ($d == 1 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 0 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 4) $img = &#039;img/hosts/petem.jpg&#039;;
else if ($d == 1 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 4 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; <img src='http://www.freshtuts.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> $img = &#039;img/hosts/angelaa.jpg&#039;;
else if ($d == 1 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 8 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 12) $img = &#039;img/hosts/shonw.jpg&#039;;
else if ($d == 1 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 12 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 13) $img = &#039;img/hosts/pottsie.jpg&#039;;
else if ($d == 1 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 13 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 15) $img = &#039;img/hosts/mikef.jpg&#039;;
else if ($d == 1 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 15 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 19) $img = &#039;img/hosts/lizzy.jpg&#039;;
else if ($d == 1 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 19) $img = &#039;img/hosts/danic.jpg&#039;;
else if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 0) $img = &#039;img/hosts/danic.jpg&#039;;

// TUESDAY SCHEDULE
if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 0 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 4) $img = &#039;img/hosts/petem.jpg&#039;;
else if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 4 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; <img src='http://www.freshtuts.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> $img = &#039;img/hosts/angelaa.jpg&#039;;
else if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 8 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 12) $img = &#039;img/hosts/shonw.jpg&#039;;
else if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 12 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 13) $img = &#039;img/hosts/pottsie.jpg&#039;;
else if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 13 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 15) $img = &#039;img/hosts/mikef.jpg&#039;;
else if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 15 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 17) $img = &#039;img/hosts/lizzy.jpg&#039;;
else if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 17 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 20) $img = &#039;img/hosts/westmar.jpg&#039;;
else if ($d == 2 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 20) $img = &#039;img/hosts/danic.jpg&#039;;
else if ($d == 3 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 0) $img = &#039;img/hosts/danic.jpg&#039;;

// WEDNESDAY SCHEDULE
if ($d == 3 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 0 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 4) $img = &#039;img/hosts/petem.jpg&#039;;
else if ($d == 3 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 4 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; <img src='http://www.freshtuts.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> $img = &#039;img/hosts/angelaa.jpg&#039;;
else if ($d == 3 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 8 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 12) $img = &#039;img/hosts/shonw.jpg&#039;;
else if ($d == 3 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 12 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 13) $img = &#039;img/hosts/pottsie.jpg&#039;;
else if ($d == 3 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 13 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 15) $img = &#039;img/hosts/mikef.jpg&#039;;
else if ($d == 3 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 15 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 19) $img = &#039;img/hosts/lizzy.jpg&#039;;
else if ($d == 3 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 19) $img = &#039;img/hosts/danic.jpg&#039;;
else if ($d == 4 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 0) $img = &#039;img/hosts/danic.jpg&#039;;

// THURSDAY SCHEDULE
if ($d == 4 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 0 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 4) $img = &#039;img/hosts/petem.jpg&#039;;
else if ($d == 4 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 4 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; <img src='http://www.freshtuts.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> $img = &#039;img/hosts/angelaa.jpg&#039;;
else if ($d == 4 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 8 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 12) $img = &#039;img/hosts/shonw.jpg&#039;;
else if ($d == 4 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 12 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 13) $img = &#039;img/hosts/pottsie.jpg&#039;;
else if ($d == 4 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 13 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 15) $img = &#039;img/hosts/mikef.jpg&#039;;
else if ($d == 4 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 15 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 19) $img = &#039;img/hosts/lizzy.jpg&#039;;
else if ($d == 4 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 19) $img = &#039;img/hosts/danic.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 0) $img = &#039;img/hosts/danic.jpg&#039;;

// FRIDAY SCHEDULE
if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 0 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 4) $img = &#039;img/hosts/petem.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 4 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; <img src='http://www.freshtuts.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> $img = &#039;img/hosts/angelaa.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 8 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 10) $img = &#039;img/hosts/shonw.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 10 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 12) $img = &#039;img/hosts/patm.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 12 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 13) $img = &#039;img/hosts/pottsie.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 13 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 15) $img = &#039;img/hosts/edp.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 15 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 18) $img = &#039;img/hosts/lizzy.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 18 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 20) $img = &#039;img/hosts/jeremyb.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 20 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 22) $img = &#039;img/hosts/exfyl.jpg&#039;;
else if ($d == 5 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 22) $img = &#039;img/hosts/stickyb.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 0) $img = &#039;img/hosts/stickyb.jpg&#039;;

// SATURDAY SCHEDULE
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 0 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 4) $img = &#039;img/hosts/techtronic.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 4 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 5) $img = &#039;img/hosts/pmw.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 5 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; <img src='http://www.freshtuts.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> $img = &#039;img/hosts/geoffh.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 8 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 9) $img = &#039;img/hosts/tomf.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 9 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 10) $img = &#039;img/hosts/jimmyj.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 10 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 11) $img = &#039;img/hosts/jasonr.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 11 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 12) $img = &#039;img/hosts/hollyk.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 12 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 13) $img = &#039;img/hosts/tomt.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 13 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 14) $img = &#039;img/hosts/seanf.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 14 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 15) $img = &#039;img/hosts/nutmeg.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 15 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 17) $img = &#039;img/hosts/aaron_jenny.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 17 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 19) $img = &#039;img/hosts/rayg_adrians.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 19 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 22) $img = &#039;img/hosts/mattb.jpg&#039;;
else if ($d == 6 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 22) $img = &#039;img/hosts/hairballj.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 0) $img = &#039;img/hosts/hairballj.jpg&#039;;

// SATURDAY SCHEDULE
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 0 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 2) $img = &#039;img/hosts/darrelm.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 2 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 4) $img = &#039;img/hosts/techtronic.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 4 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 5) $img = &#039;img/hosts/bigjon.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 5 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 6) $img = &#039;img/hosts/joebear.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 6 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; <img src='http://www.freshtuts.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> $img = &#039;img/hosts/russh.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 8 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 9) $img = &#039;img/hosts/ronk.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 9 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 10) $img = &#039;img/hosts/rockpoint.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 10 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 11) $img = &#039;img/hosts/churchatqc.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 11 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 12) $img = &#039;img/hosts/desertcf.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 12 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 16) $img = &#039;img/hosts/kristenm.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 16 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 17) $img = &#039;img/hosts/cdogg.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 17 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 18) $img = &#039;img/hosts/snarf_daff.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 18 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 19) $img = &#039;img/hosts/sonicsociety.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 19 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 21) $img = &#039;img/hosts/jscott.jpg&#039;;
else if ($d == 0 &amp;amp;amp;&amp;amp;amp; $h &amp;gt;= 21) $img = &#039;img/hosts/ghostlytalk.jpg&#039;;
else if ($d == 1 &amp;amp;amp;&amp;amp;amp; $h &amp;lt; 0) $img = &#039;img/hosts/ghostlytalk.jpg&#039;;
?&gt;</pre>
<div style='display:none' id="post-refEl-4604"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/for-radio-station-djs-or-shows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kentico CMS License &amp; 1-Year Maintenance</title>
		<link>http://www.freshtuts.net/giveaway-kentico-cms-license-1-year-maintenance/</link>
		<comments>http://www.freshtuts.net/giveaway-kentico-cms-license-1-year-maintenance/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:12:49 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Php Scripts]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Contests]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=2571</guid>
		<description><![CDATA[ Today, we are announcing an awesome giveaway: a full license to Kentico CMS which includes one-year maintenance/support. Read on to see how...]]></description>
			<content:encoded><![CDATA[<p>
<p>Today, we are announcing an awesome giveaway: a <strong>full license</strong> to <a href="http://www.kentico.com/home.aspx">Kentico CMS</a> which includes one-year maintenance/support.  Read on to see how you can participate and get a chance to win this awesome prize <strong>valued at $1,999</strong>!</p>
<p><a href="http://sixrevisions.com/contests/giveaway-1-year-subscription-to-kentico-cms/"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/383adaf274veaway.jpg.jpg" width="550" height="200" alt="Giveaway: 1-Year Subscription to Kentico CMS" /></a></p>
<p><span></span></p>
<h3>What is Kentico CMS?</h3>
<p><a href="http://www.kentico.com/home.aspx">Kentico CMS</a> is a web content management system (CMS) solution providing a complete set of  features for building websites, community sites, intranets and online stores on  the Microsoft ASP.NET platform. It&#8217;s currently used by more than 4,000 websites  in 83 countries.</p>
<p>Some of the notable companies that use Kentico CMS include  Microsoft, McDonald&#8217;s, Vodafone, O2, Brussels Airlines, Audi, Mazda, Subaru,  Samsung, Gibson, Bayer, ESPN, Guinness, DKNY and more (see more of their big  clients <a href="http://www.kentico.com/Showcase/Our_clients.aspx">here</a>).</p>
<p>Read more about features of Kentico CMS on their site&#8217;s <a href="http://www.kentico.com/free-cms-asp-net.aspx">Features page</a>.</p>
<h3>Try Kentico CMS</h3>
<p>If you want to evaluate Kentico CMS, they offer you several  options:</p>
<h4><a href="http://www.kentico.com/freecms.aspx">Download the  Free version</a> of Kentico CMS</h4>
<p>The free version of Kentico CMS is free to download, and you can use it for any purpose, including commercial purposes.</p>
<h4><a href="http://www.kentico.com/Download/Trial-Version.aspx">Download  of Trial version</a> of Kentico CMS</h4>
<p>The trial version is fully functional for 30 days and will help you evaluate the Kentico CMS features.</p>
<h4>Get a <a href="http://www.kentico.com/Demo/VirtualLab.aspx">Virtual  Lab</a> set-up for you</h4>
<p>This will let you evaluate Kentico CMS without having  to install anything (they&#8217;ll set it up for you on the Kentico CMS servers).</p>
<h3>How to participate in the Kentico CMS giveaway</h3>
<p>In order to qualify for a chance to win the 1-year subscription  to Kentico CMS, just leave a comment below that answers the following question:</p>
<blockquote><p>What&#8217;s a <strong>Kentico CMS feature</strong> that  interests you the most?</p>
</blockquote>
<p>You can see the feature list of Kentico CMS on their site:</p>
<ul>
<li><a href="http://www.kentico.com/free-cms-asp-net.aspx">www.kentico.com/free-cms-asp-net.aspx</a></li>
</ul>
<h3>Kentico CMS giveaway details</h3>
<p>This giveaway ends on <strong>Tuesday,  January 12, 2010</strong>. After that date, commenting on this post will be disabled  and you&#8217;ll no longer be able to participate.</p>
<p>When leaving your answer, make sure to leave a valid email  address because this is the only way we&#8217;ll be able to notify you if you&#8217;ve won.  The winner will be selected at random using the same method as previous Six  Revisions giveaways (you can see the MySQL random query method that we use in <a href="http://sixrevisions.com/contests/the-winners-of-the-10000-business-cards-giveaway/">this  giveaway</a>).</p>
<p>You should subscribe to the <a href="http://feeds2.feedburner.com/SixRevisions">Six Revisions RSS feed</a> so  that when the announcement post has been published, you&#8217;ll get instantly  notified.</p>
<h3>Related Content</h3>
<ul>
<li><a href="http://sixrevisions.com/web-development/how-to-evaluate-what-cms-to-use/">How  to Evaluate What CMS to Use</a></li>
<li><a href="http://sixrevisions.com/web-applications/10-promising-content-management-systems/">10  Promising Content Management Systems</a></li>
<li><a href="http://sixrevisions.com/web-development/10-ways-to-cut-down-web-development-time/">10  Ways to Cut Down Web Development Time</a></li>
<li><em>Related categories</em>: <a href="http://sixrevisions.com/category/web-development/">Web Development</a> and <a href="http://sixrevisions.com/category/wordpress/">WordPress</a></li>
</ul>
<h3>About the Author</h3>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/6a3429dc3esmall.jpg.jpg" alt="" width="80" height="80" /><span><strong>Jacob Gube</strong> is the Founder and Chief Editor of <strong><a href="http://sixrevisions.com/">Six Revisions</a></strong>. He&#8217;s also a web developer/designer who specializes in front-end development (JavaScript, HTML, CSS) and PHP development. If you&#8217;d like to connect with him, head on over to the <a href="http://sixrevisions.com/contact/">contact page</a> and follow him on Twitter: <strong>@<a href="http://twitter.com/sixrevisions">sixrevisions</a></strong>.</span></p>
<div>
<a href="http://feeds.feedburner.com/~ff/SixRevisions?a=VjLKFUWOSKs:nLFd07n-ZaE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SixRevisions?i=VjLKFUWOSKs:nLFd07n-ZaE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=VjLKFUWOSKs:nLFd07n-ZaE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=VjLKFUWOSKs:nLFd07n-ZaE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=VjLKFUWOSKs:nLFd07n-ZaE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/SixRevisions?i=VjLKFUWOSKs:nLFd07n-ZaE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=VjLKFUWOSKs:nLFd07n-ZaE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=7Q72WNTAKBA" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/SixRevisions/~4/VjLKFUWOSKs" height="1" width="1" /></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/383adaf274veaway.jpg.jpg" /></p>
<p>Here is the original post:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/SixRevisions/~3/VjLKFUWOSKs/" title="Giveaway: Kentico CMS License &amp; 1-Year Maintenance">Giveaway: Kentico CMS License &amp; 1-Year Maintenance</a></p>
<div style='display:none' id="post-refEl-2571"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/giveaway-kentico-cms-license-1-year-maintenance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SnackTools Makes Creating Rich Media Content Easy</title>
		<link>http://www.freshtuts.net/snacktools-makes-creating-rich-media-content-easy/</link>
		<comments>http://www.freshtuts.net/snacktools-makes-creating-rich-media-content-easy/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:12:48 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[from scratch]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[snacktools]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=2568</guid>
		<description><![CDATA[ Creating rich professional-level Flash ...]]></description>
			<content:encoded><![CDATA[<p>
<p>Creating rich professional-level Flash media components isn&#8217;t simple for the ordinary designer or developer who doesn&#8217;t have a strong command of Flash/Flex. And even if you were a Flash/Flex guru, you&#8217;re probably looking for ways to save time so that you can focus on other things.</p>
<p><a href="http://www.snacktools.com/" target="_blank">SnackTools</a>, a suite of webapps for creating Flash components, is here to help. SnackTools aims to bring non-Flash developers a way to create customized, sophisticated and impressive Flash media components without having to know how to code.</p>
<p><a href="http://sixrevisions.com/contests/snacktools-makes-creating-rich-media-content-easy/"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/39c327367aeadimg.jpg.jpg" width="550" height="200" alt="SnackTools Makes Creating Rich Media Content Easy" /></a></p>
<p><span></span></p>
<p>Since SnackTools is web-based, there&#8217;s no need to install anything, and you can access your work any time and anywhere (with an internet connection).</p>
<p>Currently, the suite has <a href="http://www.bannersnack.com/" target="_blank">BannerSnack</a>, which lets you create rich interactive Flash banners, and <a href="http://www.photosnack.com/" target="_blank">PhotoSnack</a>, which lets you create stunning photo galleries (perfect for portfolios). </p>
<h3>BannerSnack</h3>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/dc7019d452enshot.jpg.jpg" width="550" height="279" alt="BannerSnack" /></p>
<p><a href="http://www.bannersnack.com/">BannerSnack</a> lets you create Flash banners using a very intuitive interface. It has standard templates that you can modify so that you don&#8217;t have to start from scratch. If you want a more customized solution, you can import your own graphics assets and use the tool to design your Flash banner. You can select a standard size or customize the size of your banner. Check out <a href="http://www.bannersnack.com/examples/">some examples</a> of banners created with BannerSnack.</p>
<h3>PhotoSnack</h3>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/ec49c9e1bfenshot.jpg.jpg" width="550" height="352" alt="PhotoSnack" /></p>
<p>PhotoSnack is a web-based application that lets you generate stunning photo slideshows/galleries. You can choose from a wide variety of templates. It will literally take you a few minutes to get your slideshow set up: you pick a template, you upload your photos, then adjust the settings, and voila – your own professional-level slideshow. You can use it to display your portfolio, photos, and more. Here are some examples of PhotoSnack in action: <a href="http://www.photosnack.com/slideshow-examples/">Slideshow examples</a>.</p>
<h3>A special Six Revisions giveaway</h3>
<p>SnackTools has teamed up with us here at Six Revisions to give five lucky readers 1000 points for SnackTools. A download costs 4 points, so that&#8217;s a lot of awesome stuff!</p>
<h4>How to participate in the SnackTools giveaway </h4>
<p>To participate in the SnackTools giveaway for 1000 points, simply leave a comment below answering the following question:</p>
<blockquote><p>If you won 1000 SnackTools points, how would you use it?</p>
</blockquote>
<p>We&#8217;ll select five winners at random using the same methods as previous Six Revisions giveaways. The giveaway ends on <strong>Thursday, January 14, 2010</strong> after which you&#8217;ll no longer be able to participate.</p>
<p>We&#8217;ll write a follow-up post to announce the winners, so you should subscribe to the <a href="http://feeds2.feedburner.com/SixRevisions">RSS feed</a> to get instantly notified when the announcement of winners has been posted. You should leave a valid email address when leaving your comment as this is the only way we&#8217;ll be able to contact you regarding your prize if you win.</p>
<h3>One day only: exclusive Six Revisions freebie</h3>
<p>For the entire day today, you can get 100 points free just by using the coupon code <strong>SIXREVISIONS100</strong>.</p>
<p>You have 30 days to spend all 100 points, so you better hurry!</p>
<h3>An Easter egg for geeks</h3>
<p>If you&#8217;re familiar with the Konami Code, here&#8217;s a tip: you <a href="http://twitter.com/SnackTools/status/6993660356">should try it out</a> when you&#8217;ve logged into the system and see what happens!</p>
<h3>Related Content</h3>
<ul>
<li><a href="http://sixrevisions.com/flashactionscript/flash_tutorial_websites/">12 Websites To Help You Learn Flash/ActionScript</a></li>
<li><a href="http://sixrevisions.com/usabilityaccessibility/adobe-flash-accessibility-best-practices-for-design/">Adobe Flash Accessibility: Best Practices for Design</a></li>
<li><a href="http://sixrevisions.com/flashactionscript/10-useful-flash-components-for-graphing-data/">10 Useful Flash Components for Graphing Data</a></li>
<li><em>Related categories</em>: <a href="http://sixrevisions.com/category/user-interface/">User Interface</a> and <a href="http://sixrevisions.com/category/web-development/">Web Development</a></li>
</ul>
<h3>About the Author</h3>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/6a3429dc3esmall.jpg.jpg" alt="" width="80" height="80" /><span><strong>Jacob Gube</strong> is the Founder and Chief Editor of <strong><a href="http://sixrevisions.com/">Six Revisions</a></strong>. He&#8217;s also a web developer/designer who specializes in front-end development (JavaScript, HTML, CSS) and PHP development. If you&#8217;d like to connect with him, head on over to the <a href="http://sixrevisions.com/contact/">contact page</a> and follow him on Twitter: <strong>@<a href="http://twitter.com/sixrevisions">sixrevisions</a></strong>.</span></p>
<div>
<a href="http://feeds.feedburner.com/~ff/SixRevisions?a=BBiQnit-qLQ:lsyEwoYB9jQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/SixRevisions?i=BBiQnit-qLQ:lsyEwoYB9jQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=BBiQnit-qLQ:lsyEwoYB9jQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=BBiQnit-qLQ:lsyEwoYB9jQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=BBiQnit-qLQ:lsyEwoYB9jQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/SixRevisions?i=BBiQnit-qLQ:lsyEwoYB9jQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=BBiQnit-qLQ:lsyEwoYB9jQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/SixRevisions?d=7Q72WNTAKBA" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/SixRevisions/~4/BBiQnit-qLQ" height="1" width="1" /></p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/39c327367aeadimg.jpg.jpg" /></p>
<p>Go here to read the rest:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/SixRevisions/~3/BBiQnit-qLQ/" title="SnackTools Makes Creating Rich Media Content Easy">SnackTools Makes Creating Rich Media Content Easy</a></p>
<div style='display:none' id="post-refEl-2568"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/snacktools-makes-creating-rich-media-content-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20 Beautiful And Inspirational iPhone App Website Designs</title>
		<link>http://www.freshtuts.net/20-beautiful-and-inspirational-iphone-app-website-designs/</link>
		<comments>http://www.freshtuts.net/20-beautiful-and-inspirational-iphone-app-website-designs/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:00:42 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress for iPhone]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Dig Deep Fitness]]></category>
		<category><![CDATA[iPhone Teaser]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[Outside App]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Tipulator]]></category>
		<category><![CDATA[Tweetie iPhone]]></category>
		<category><![CDATA[Typography App]]></category>
		<category><![CDATA[Wheel of Tea]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=2341</guid>
		<description><![CDATA[ There are so many iPhone applications available for download today. Many of them have their own website that tells everyone about them, aswel as being included on the iTunes app ...]]></description>
			<content:encoded><![CDATA[<p>
<p>There are so many iPhone applications available for download today. Many of them have their own website that tells everyone about them, aswel as being included on the iTunes app store. Showcased here are 20 beautiful and inspirational websites, that show off iPhone apps.</p>
<p>This was our selection of 20, so if you think that there are any others that deserve to be part of the list, why not let us know by dropping in a comment. Enjoy the list.</p>
<h6><span>iPhone App Websites&#8230;</span></h6>
<h3>Outpost</h3>
<p><a href="http://www.outpostapp.com" target="_blank"><img class="alignnone size-full wp-image-5294" title="1" src="http://www.freshtuts.net/wp-content/uploads/2010/01/f7acb48539114.jpg.jpg" alt="1" width="674" height="246" /></a></p>
<p><span>* * * * *</span></p>
<h3>Tea Round</h3>
<p><a href="http://tearoundapp.com" target="_blank"><img class="alignnone size-full wp-image-5295" title="2" src="http://www.freshtuts.net/wp-content/uploads/2010/01/cdb815f5bd23.jpg.jpg" alt="2" width="674" height="292" /></a></p>
<p><span>* * * * *</span></p>
<h3>Dig Deep Fitness</h3>
<p><a href="http://www.digdeepfitness.com" target="_blank"><img class="alignnone size-full wp-image-5296" title="3" src="http://www.freshtuts.net/wp-content/uploads/2010/01/cf9a435b5233.jpg.jpg" alt="3" width="674" height="237" /></a></p>
<p><span>* * * * *</span></p>
<h3>Outside App</h3>
<p><a href="http://www.outsideapp.com" target="_blank"><img class="alignnone size-full wp-image-5297" title="4" src="http://www.freshtuts.net/wp-content/uploads/2010/01/b1423e533043.jpg.jpg" alt="4" width="674" height="283" /></a></p>
<p><span>* * * * *</span></p>
<h3>Tapbots</h3>
<p><a href="http://tapbots.com" target="_blank"><img class="alignnone size-full wp-image-5298" title="5" src="http://www.freshtuts.net/wp-content/uploads/2010/01/365af21bed53.jpg.jpg" alt="5" width="674" height="284" /></a></p>
<p><span>* * * * *</span></p>
<h3>Cellar App</h3>
<p><a href="http://cellar-app.com" target="_blank"><img class="alignnone size-full wp-image-5299" title="6" src="http://www.freshtuts.net/wp-content/uploads/2010/01/f2e198324063.jpg.jpg" alt="6" width="674" height="281" /></a></p>
<p><span>* * * * *</span></p>
<h3>Broadersheet</h3>
<p><a href="http://iphone.broadersheet.com" target="_blank"><img class="alignnone size-full wp-image-5300" title="7" src="http://www.freshtuts.net/wp-content/uploads/2010/01/b1bf2b266e73.jpg.jpg" alt="7" width="674" height="291" /></a></p>
<p><span>* * * * *</span></p>
<h3>Tap Tapas</h3>
<p><a href="http://www.taptapas.com/ishots.php" target="_blank"><img class="alignnone size-full wp-image-5301" title="8" src="http://www.freshtuts.net/wp-content/uploads/2010/01/03496d488f83.jpg.jpg" alt="8" width="674" height="253" /></a></p>
<p><span>* * * * *</span></p>
<h3>The Typography Manual</h3>
<p><a href="http://typographyapp.com" target="_blank"><img class="alignnone size-full wp-image-5302" title="9" src="http://www.freshtuts.net/wp-content/uploads/2010/01/010b0b3ccb93.jpg.jpg" alt="9" width="674" height="294" /></a></p>
<p><span>* * * * *</span></p>
<h3>Paraply</h3>
<p><a href="http://paraplyapp.dk" target="_blank"><img class="alignnone size-full wp-image-5303" title="10" src="http://www.freshtuts.net/wp-content/uploads/2010/01/eb33721599103.jpg.jpg" alt="10" width="674" height="255" /></a></p>
<p><span>* * * * *</span></p>
<h3>Barista</h3>
<p><a href="http://baristaapp.com" target="_blank"><img class="alignnone size-full wp-image-5304" title="11" src="http://www.freshtuts.net/wp-content/uploads/2010/01/6de5af5987115.jpg.jpg" alt="11" width="674" height="251" /></a></p>
<p><span>* * * * *</span></p>
<h3>The Fun Tip Calculator</h3>
<p><a href="http://www.sophiestication.com/tipulator/" target="_blank"><img class="alignnone size-full wp-image-5305" title="12" src="http://www.freshtuts.net/wp-content/uploads/2010/01/3ed6498454123.jpg.jpg" alt="12" width="674" height="309" /></a></p>
<p><span>* * * * *</span></p>
<h3>June Cloud</h3>
<p><a href="http://junecloud.com" target="_blank"><img class="alignnone size-full wp-image-5306" title="13" src="http://www.freshtuts.net/wp-content/uploads/2010/01/2aa2bd4976133.jpg.jpg" alt="13" width="674" height="314" /></a></p>
<p><span>* * * * *</span></p>
<h3>Wheel of Tea</h3>
<p><a href="http://www.wheeloftea.com" target="_blank"><img class="alignnone size-full wp-image-5307" title="14" src="http://www.freshtuts.net/wp-content/uploads/2010/01/0f29839022143.jpg.jpg" alt="14" width="674" height="333" /></a></p>
<p><span>* * * * *</span></p>
<h3>Tic A Tac Poker</h3>
<p><a href="http://www.ticatacgames.net/static/iphone_teaser/" target="_blank"><img class="alignnone size-full wp-image-5308" title="15" src="http://www.freshtuts.net/wp-content/uploads/2010/01/a41cc4b88e153.jpg.jpg" alt="15" width="674" height="259" /></a></p>
<p><span>* * * * *</span></p>
<h3>Ego App</h3>
<p><a href="http://ego-app.com" target="_blank"><img class="alignnone size-full wp-image-5309" title="16" src="http://www.freshtuts.net/wp-content/uploads/2010/01/a3a4a74107163.jpg.jpg" alt="16" width="674" height="310" /></a></p>
<p><span>* * * * *</span></p>
<h3>Happy Dangy Diggy</h3>
<p><a href="http://www.happydangydiggy.com" target="_blank"><img class="alignnone size-full wp-image-5310" title="17" src="http://www.freshtuts.net/wp-content/uploads/2010/01/9bba762c41173.jpg.jpg" alt="17" width="674" height="279" /></a></p>
<p><span>* * * * *</span></p>
<h3>TweetDeck</h3>
<p><a href="http://tweetdeck.com/iphone/" target="_blank"><img class="alignnone size-full wp-image-5311" title="18" src="http://www.freshtuts.net/wp-content/uploads/2010/01/89b968efc6183.jpg.jpg" alt="18" width="674" height="300" /></a></p>
<p><span>* * * * *</span></p>
<h3>Wordpress For iPhone</h3>
<p><a href="http://iphone.wordpress.org" target="_blank"><img class="alignnone size-full wp-image-5312" title="19" src="http://www.freshtuts.net/wp-content/uploads/2010/01/d296aea1c0193.jpg.jpg" alt="19" width="674" height="243" /></a></p>
<p><span>* * * * *</span></p>
<h3>Tweetie</h3>
<p><a href="http://www.atebits.com/tweetie-iphone/" target="_blank"><img class="alignnone size-full wp-image-5313" title="20" src="http://www.freshtuts.net/wp-content/uploads/2010/01/87ec000526203.jpg.jpg" alt="20" width="674" height="249" /></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=CVUHDoP3CiU:oT4CRPZvDvY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=CVUHDoP3CiU:oT4CRPZvDvY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?i=CVUHDoP3CiU:oT4CRPZvDvY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=CVUHDoP3CiU:oT4CRPZvDvY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?i=CVUHDoP3CiU:oT4CRPZvDvY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=CVUHDoP3CiU:oT4CRPZvDvY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?i=CVUHDoP3CiU:oT4CRPZvDvY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=CVUHDoP3CiU:oT4CRPZvDvY:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?d=TzevzKxY174" border="0"></img></a>
</div>
</p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/f7acb48539114.jpg.jpg" /></p>
<p>See the rest here:<br />
<a target="_blank" href="http://www.webdesigndev.com/photoshop/20-beautiful-and-inspirational-iphone-app-website-designs" title="20 Beautiful And Inspirational iPhone App Website Designs">20 Beautiful And Inspirational iPhone App Website Designs</a></p>
<div style='display:none' id="post-refEl-2341"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/20-beautiful-and-inspirational-iphone-app-website-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20 Super Website Designs Featuring People</title>
		<link>http://www.freshtuts.net/20-super-website-designs-featuring-people/</link>
		<comments>http://www.freshtuts.net/20-super-website-designs-featuring-people/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:00:34 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[dental-plan]]></category>
		<category><![CDATA[Galante]]></category>
		<category><![CDATA[Gavin Castleton]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Roundups]]></category>
		<category><![CDATA[Tierra Virtual]]></category>
		<category><![CDATA[Uniqlo]]></category>
		<category><![CDATA[Urban Originals]]></category>
		<category><![CDATA[virtual]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=2320</guid>
		<description><![CDATA[ I decided to write about something different today. Many designers incorporate people into web designs. Weather its a big photo, or the...]]></description>
			<content:encoded><![CDATA[<p>
<p>I decided to write about something different today. Many designers incorporate people into web designs. Weather its a big photo, or the person is actually within the website design. Here is a showcase I have put together that features 20 super website designs that contain people within.</p>
<p>I think my favorite has to be the Electricurrent design. What do you think? If you have any more designs you know of that feature people, then feel free to drop in a comment for critique.</p>
<h3>cPeople</h3>
<p><a href="http://cpeople.ru" target="_blank"><img class="alignnone size-full wp-image-5401" title="1" src="http://www.freshtuts.net/wp-content/uploads/2010/01/716c30cb23127.jpg.jpg" alt="1" width="674" height="486" /></a></p>
<p><span>* * * * *</span></p>
<h3>Gavin Castleton</h3>
<p><a href="http://www.gavincastleton.com" target="_blank"><img class="alignnone size-full wp-image-5402" title="2" src="http://www.freshtuts.net/wp-content/uploads/2010/01/8f57c264e1212.jpg.jpg" alt="2" width="674" height="456" /></a></p>
<p><span>* * * * *</span></p>
<h3>Tierra Virtual</h3>
<p><a href="http://www.tierravirtual.com/en/" target="_blank"><img class="alignnone size-full wp-image-5403" title="3" src="http://www.freshtuts.net/wp-content/uploads/2010/01/425e47351037.jpg.jpg" alt="3" width="674" height="501" /></a></p>
<p><span>* * * * *</span></p>
<h3>Brooklyn Fare</h3>
<p><a href="http://brooklynfare.com/index.php" target="_blank"><img class="alignnone size-full wp-image-5404" title="4" src="http://www.freshtuts.net/wp-content/uploads/2010/01/37d89923bf47.jpg.jpg" alt="4" width="674" height="415" /></a></p>
<p><span>* * * * *</span></p>
<h3>Urban Originals</h3>
<p><a href="http://www.uo.com.au" target="_blank"><img class="alignnone size-full wp-image-5405" title="5" src="http://www.freshtuts.net/wp-content/uploads/2010/01/a6031a9bae57.jpg.jpg" alt="5" width="674" height="428" /></a></p>
<p><span>* * * * *</span></p>
<h3>Uni Qlo</h3>
<p><a href="http://www.uniqlo.com/us/" target="_blank"><img class="alignnone size-full wp-image-5407" title="6" src="http://www.freshtuts.net/wp-content/uploads/2010/01/b0de866dda67.jpg.jpg" alt="6" width="694" height="386" /></a></p>
<p><span>* * * * *</span></p>
<h3>Galante</h3>
<p><a href="http://galante.pl" target="_blank"><img class="alignnone size-full wp-image-5408" title="7" src="http://www.freshtuts.net/wp-content/uploads/2010/01/eb5629da2977.jpg.jpg" alt="7" width="694" height="431" /></a></p>
<p><span>* * * * *</span></p>
<h3>Celly Shop</h3>
<p><a href="http://www.cellyshop.cz" target="_blank"><img class="alignnone size-full wp-image-5409" title="8" src="http://www.freshtuts.net/wp-content/uploads/2010/01/c84e8902a887.jpg.jpg" alt="8" width="694" height="317" /></a></p>
<p><span>* * * * *</span></p>
<h3>Michael J Fox</h3>
<p><a href="http://www.michaeljfox.org" target="_blank"><img class="alignnone size-full wp-image-5410" title="9" src="http://www.freshtuts.net/wp-content/uploads/2010/01/188e84859f97.jpg.jpg" alt="9" width="694" height="304" /></a></p>
<p><span>* * * * *</span></p>
<h3>Envirenew</h3>
<p><a href="http://envirenew.org" target="_blank"><img class="alignnone size-full wp-image-5411" title="10" src="http://www.freshtuts.net/wp-content/uploads/2010/01/8159a94510107.jpg.jpg" alt="10" width="694" height="454" /></a></p>
<p><span>* * * * *</span></p>
<h3>Hitachi</h3>
<p><a href="http://www.hitachi.com" target="_blank"><img class="alignnone size-full wp-image-5412" title="11" src="http://www.freshtuts.net/wp-content/uploads/2010/01/66535a714e1111.jpg.jpg" alt="11" width="694" height="305" /></a></p>
<p><span>* * * * *</span></p>
<h3>ToLingo</h3>
<p><a href="http://www.tolingo.com" target="_blank"><img class="alignnone size-full wp-image-5413" title="12" src="http://www.freshtuts.net/wp-content/uploads/2010/01/ef3a78ed0f128.jpg.jpg" alt="12" width="694" height="484" /></a></p>
<p><span>* * * * *</span></p>
<h3>Practice Cafe</h3>
<p><a href="http://www.practicecafe.com" target="_blank"><img class="alignnone size-full wp-image-5414" title="13" src="http://www.freshtuts.net/wp-content/uploads/2010/01/5d8da30f00137.jpg.jpg" alt="13" width="694" height="598" /></a></p>
<p><span>* * * * *</span></p>
<h3>Woolshed Grove</h3>
<p><a href="http://www.woolshedgrove.com.au" target="_blank"><img class="alignnone size-full wp-image-5415" title="14" src="http://www.freshtuts.net/wp-content/uploads/2010/01/b25bd4c0cf147.jpg.jpg" alt="14" width="694" height="424" /></a></p>
<p><span>* * * * *</span></p>
<h3>Health Angle</h3>
<p><a href="http://www.healthangle.com" target="_blank"><img class="alignnone size-full wp-image-5416" title="15" src="http://www.freshtuts.net/wp-content/uploads/2010/01/360ecabd0c157.jpg.jpg" alt="15" width="694" height="397" /></a></p>
<p><span>* * * * *</span></p>
<h3>MediaStroika</h3>
<p><a href="http://www.mediastroika.com" target="_blank"><img class="alignnone size-full wp-image-5417" title="16" src="http://www.freshtuts.net/wp-content/uploads/2010/01/b45b2bed02165.jpg.jpg" alt="16" width="694" height="347" /></a></p>
<p><span>* * * * *</span></p>
<h3>Dental Plan Cards</h3>
<p><a href="http://www.dentalplancards.com" target="_blank"><img class="alignnone size-full wp-image-5418" title="17" src="http://www.freshtuts.net/wp-content/uploads/2010/01/b0d58a08be175.jpg.jpg" alt="17" width="694" height="383" /></a></p>
<p><span>* * * * *</span></p>
<h3>Electricurrent</h3>
<p><a href="http://www.electricurrent.com" target="_blank"><img class="alignnone size-full wp-image-5419" title="18" src="http://www.freshtuts.net/wp-content/uploads/2010/01/86078a5833185.jpg.jpg" alt="18" width="694" height="278" /></a></p>
<p><span>* * * * *</span></p>
<h3>Rocket Club</h3>
<p><a href="http://www.rocketclub.info" target="_blank"><img class="alignnone size-full wp-image-5420" title="19" src="http://www.freshtuts.net/wp-content/uploads/2010/01/a596f359a9195.jpg.jpg" alt="19" width="694" height="297" /></a></p>
<p><span>* * * * *</span></p>
<h3>Billy Hughes</h3>
<p><a href="http://billyhughes.moadoph.gov.au" target="_blank"><img class="alignnone size-full wp-image-5421" title="20" src="http://www.freshtuts.net/wp-content/uploads/2010/01/72e9b7887b205.jpg.jpg" alt="20" width="694" height="308" /></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=zmFdvvh4wyY:qyjkaiqfL8c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=zmFdvvh4wyY:qyjkaiqfL8c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?i=zmFdvvh4wyY:qyjkaiqfL8c:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=zmFdvvh4wyY:qyjkaiqfL8c:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?i=zmFdvvh4wyY:qyjkaiqfL8c:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=zmFdvvh4wyY:qyjkaiqfL8c:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?i=zmFdvvh4wyY:qyjkaiqfL8c:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LearnWebdesign?a=zmFdvvh4wyY:qyjkaiqfL8c:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/LearnWebdesign?d=TzevzKxY174" border="0"></img></a>
</div>
</p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/716c30cb23127.jpg.jpg" /></p>
<p>Read more:<br />
<a target="_blank" href="http://www.webdesigndev.com/roundups/20-super-website-designs-featuring-people" title="20 Super Website Designs Featuring People">20 Super Website Designs Featuring People</a></p>
<div style='display:none' id="post-refEl-2320"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/20-super-website-designs-featuring-people/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WDL Premium: PhotoSpin CS Flash Component</title>
		<link>http://www.freshtuts.net/wdl-premium-photospin-cs-flash-component/</link>
		<comments>http://www.freshtuts.net/wdl-premium-photospin-cs-flash-component/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 12:46:31 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[videos]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[component]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[manager]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Premium]]></category>
		<category><![CDATA[premium-member]]></category>
		<category><![CDATA[preset-manager]]></category>
		<category><![CDATA[proves-it-pays]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=2203</guid>
		<description><![CDATA[ Today we&#8217;re giving you the PhotoSpin CS Flash component from, Digicrafts . FotoSpin provides a unique touch and spin control experience to ...]]></description>
			<content:encoded><![CDATA[<p>
<p>Today we&#8217;re giving you the PhotoSpin CS Flash component from, <a href="http://www.digicrafts.com.hk/components/" target="_blank">Digicrafts</a>. FotoSpin provides a unique touch and spin control experience to the user. This component normally goes for $49.90, which proves it pays to be a <a href="http://webdesignledger.com/wdl-premium">WDL Premium</a> member. If your not a member yet, be sure and <a href="http://webdesignledger.com/wdl-premium">sign up</a>.<span></span></p>
<p>This component was developed by using the Papervision3D API. It shows a real time three dimension look and I can control the view angle of the album in 3D space. </p>
<h3>Preset Manager </h3>
<p>The new preset manager allows you to save the settings in to a preset file. You can reuse the preset file in different project. To see a demo, click the image below.</p>
<p><a href="http://www.digicrafts.com.hk/components/foto-spin-cs" target="_blank"><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/da1edd9840spin_1.jpg.jpg" alt="PhotoSpin" /></a></p>
<h3>Other Features</h3>
<ul>
<li>Fully customize spinning photo album</li>
<li>Touch scroll control</li>
<li>Prefect flipping effect</li>
<li>Setup menu by xml</li>
<li>Loading external images as item</li>
<li>Item glow effect</li>
<li>Customize mirror and shadow effect</li>
<li>Customize item action</li>
<li>Compatible with Flash CS 3 and Action Script 3.0</li>
<li>Full API support</li>
</ul>
<h3>Download PhotoSpin CS</h3>
<p>
<div>
<h5>Premium Member</h5>
<p>You must be a WDL Premium member to download this file. </p>
<p><a href="http://webdesignledger.com/wdl-premium">Sign Up</a> <a href="http://webdesignledger.com/wp-login.php">Login</a></div>
</p>
<h3>About Digicrafts</h3>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/0d64b7e3b9banner.jpg.jpg" alt="Go Media" width="50" height="50" class="alignleft " style="float: left; margin: 0px 10px 5px 0;" /><a href="http://www.digicrafts.com.hk/components/" target="_blank">Digicrafts</a> creates really cool Flash components and other plugins for Adobe products.</p>
</p>
<p><img src="http://www.freshtuts.net/wp-content/uploads/2010/01/da1edd9840spin_1.jpg.jpg" /></p>
<p>Read the original here:<br />
<a target="_blank" href="http://webdesignledger.com/premium/wdl-premium-photospin-cs-flash-component" title="WDL Premium: PhotoSpin CS Flash Component">WDL Premium: PhotoSpin CS Flash Component</a></p>
<div style='display:none' id="post-refEl-2203"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/wdl-premium-photospin-cs-flash-component/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display Random Image from a Directory</title>
		<link>http://www.freshtuts.net/random-image-from-directory-using-php/</link>
		<comments>http://www.freshtuts.net/random-image-from-directory-using-php/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 12:33:47 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Php Scripts]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[random image]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=109</guid>
		<description><![CDATA[This script outputs random image from a defined directory.
Make sure to ...]]></description>
			<content:encoded><![CDATA[<p>This script outputs random image from a defined directory.</p>
<p>Make sure to change the path to your images directory and also an image to display if directory listing fails. I have found this piece of code handy to use to create random headers, logos when designing web pages.</p>
<p> </p>
<h2><span style="color: #3366ff;">Code:</span></h2>
<p> </p>
<p class="de1"><span class="kw2"><span style="color: #339966;">&lt;?php</span></span></p>
<p class="de1"> </p>
<p class="de1">    <span class="re0">$path_to_images</span> <span class="sy0">=</span> <span class="st0">&#8220;<span style="color: #ff0000;">/images/</span>&#8220;</span>; <span style="color: #3366ff;"> <span class="co1"><span style="color: #ff6600;">// path to your images</span></span></span></p>
<p class="de1">    <span class="re0">$default_img</span> <span class="sy0">=</span> <span class="st0">&#8220;<span style="color: #ff0000;">image.gif</span>&#8220;</span>;  <span class="co1"><span style="color: #ff6600;">// image to display if directory listing fails</span></span></p>
<p class="de1"> </p>
<p class="de1">    <span class="kw2">function</span> getRandomImage<span class="br0">(</span><span class="re0">$thispath</span><span class="sy0">,</span> <span class="re0">$img</span><span class="br0">)</span> <span class="br0">{</span></p>
<p class="de1">        <span class="kw1">if</span> <span class="br0">(</span> <span class="re0">$list</span> <span class="sy0">=</span> getImagesList<span class="br0">(</span><span class="re0">$thispath</span><span class="br0">)</span> <span class="br0">)</span> <span class="br0">{</span></p>
<p class="de1">            <a href="http://www.php.net/mt_srand"><span class="kw3">mt_srand</span></a><span class="br0">(</span> <span class="br0">(</span>double<span class="br0">)</span><a href="http://www.php.net/microtime"><span class="kw3">microtime</span></a><span class="br0">(</span><span class="br0">)</span> <span class="sy0">*</span> <span class="nu0">1000000</span> <span class="br0">)</span>;</p>
<p class="de1">            <span class="re0">$num</span> <span class="sy0">=</span> <a href="http://www.php.net/array_rand"><span class="kw3">array_rand</span></a><span class="br0">(</span><span class="re0">$list</span><span class="br0">)</span>;</p>
<p class="de1">            <span class="re0">$img</span> <span class="sy0">=</span> <span class="re0">$list</span><span class="br0">[</span><span class="re0">$num</span><span class="br0">]</span>;</p>
<p class="de1">        <span class="br0">}</span></p>
<p class="de1">        <span class="kw1">return</span> <span class="re0">$thispath</span> <span class="sy0">.</span> <span class="re0">$img</span>;</p>
<p class="de1">    <span class="br0">}</span></p>
<p class="de1">    <span class="kw2">function</span> getImagesList<span class="br0">(</span><span class="re0">$thispath</span><span class="br0">)</span> <span class="br0">{</span></p>
<p class="de1">        <span class="re0">$ctr</span> <span class="sy0">=</span> <span class="nu19">0</span>;</p>
<p class="de1">        <span class="kw1">if</span> <span class="br0">(</span> <span class="re0">$img_dir</span> <span class="sy0">=</span> <span class="sy0">@</span><a href="http://www.php.net/opendir"><span class="kw3">opendir</span></a><span class="br0">(</span><span class="re0">$thispath</span><span class="br0">)</span> <span class="br0">)</span> <span class="br0">{</span></p>
<p class="de1">            <span class="kw1">while</span> <span class="br0">(</span> <span class="kw2">false</span> <span class="sy0">!==</span> <span class="br0">(</span><span class="re0">$img_file</span> <span class="sy0">=</span> <a href="http://www.php.net/readdir"><span class="kw3">readdir</span></a><span class="br0">(</span><span class="re0">$img_dir</span><span class="br0">)</span><span class="br0">)</span> <span class="br0">)</span> <span class="br0">{</span></p>
<p class="de1">               <span style="color: #ff6600;"> <span class="co1">// can add checks for other image file types here</span></span></p>
<p class="de1">                <span class="kw1">if</span> <span class="br0">(</span> <a href="http://www.php.net/preg_match"><span class="kw3">preg_match</span></a><span class="br0">(</span><span class="st0">&#8220;/(<span class="es0">\.</span>gif|<span class="es0">\.</span>jpg)$/&#8221;</span><span class="sy0">,</span> <span class="re0">$img_file</span><span class="br0">)</span> <span class="br0">)</span> <span class="br0">{</span></p>
<p class="de1">                    <span class="re0">$images</span><span class="br0">[</span><span class="re0">$ctr</span><span class="br0">]</span> <span class="sy0">=</span> <span class="re0">$img_file</span>;</p>
<p class="de1">                    <span class="re0">$ctr</span>++;</p>
<p class="de1">                <span class="br0">}</span></p>
<p class="de1">            <span class="br0">}</span></p>
<p class="de1">            <a href="http://www.php.net/closedir"><span class="kw3">closedir</span></a><span class="br0">(</span><span class="re0">$img_dir</span><span class="br0">)</span>;</p>
<p class="de1">            <span class="kw1">return</span> <span class="re0">$images</span>;</p>
<p class="de1">        <span class="br0">}</span></p>
<p class="de1">        <span class="kw1">return</span> <span class="kw2">false</span>;</p>
<p class="de1">    <span class="br0">}</span></p>
<p class="de1"> </p>
<p class="de1"> </p>
<p class="de1"><span style="color: #339966;"><span class="kw2">?&gt;</span> </span></p>
<p class="de1"> </p>
<p class="de1">&lt;img src=&#8221;<span class="kw2">&lt;?php</span> <a href="http://www.php.net/echo"><span class="kw3">echo</span></a> getRandomImage<span class="br0">(</span><span class="re0">$path_to_images</span><span class="sy0">,</span> <span class="re0">$default_img</span><span class="br0">)</span> <span class="kw2">?&gt;</span>;&#8221;&gt;</p>
<p class="de1"> </p>
<p class="de1"> </p>
<p class="de1"> </p>
<div style='display:none' id="post-refEl-109"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/random-image-from-directory-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display different image each day of the week</title>
		<link>http://www.freshtuts.net/display-a-different-image-for-each-day-of-the-week/</link>
		<comments>http://www.freshtuts.net/display-a-different-image-for-each-day-of-the-week/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 11:28:17 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Php Scripts]]></category>
		<category><![CDATA[image of the day]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=96</guid>
		<description><![CDATA[This PHP script will get the day of the week ...]]></description>
			<content:encoded><![CDATA[<p>This PHP script will get the day of the week from the server date and then display an image (jpg or gif) to match. <span style="color: #ff8000;"> <span style="color: #000000;">Change the name of the image folder, Images must be named Monday.gif, Tuesday.gif etc, Change to the location of the folder containing the images</span>.<br />
</span></p>
<p> </p>
<h2><span style="color: #3366ff;">The code</span></h2>
<pre><code><span style="color: #000000;">
<span style="color: #0000bb;">&lt;?php

</span><span style="color: #ff8000;">/**

 * Change the name of the image folder

 *

 * Images must be named Monday.gif, Tuesday.gif etc

 */

// Change to the location of the folder containing the images

</span><span style="color: #0000bb;">$image_folder </span><span style="color: #007700;">= </span><span style="color: #dd0000;">"images/days"</span><span style="color: #007700;">;

</span><span style="color: #ff8000;">// You do not need to edit below this line

</span><span style="color: #0000bb;">$today </span><span style="color: #007700;">= </span><span style="color: #0000bb;">date</span><span style="color: #007700;">(</span><span style="color: #dd0000;">'l'</span><span style="color: #007700;">);

if (</span><span style="color: #0000bb;">file_exists</span><span style="color: #007700;">(</span><span style="color: #0000bb;">$image_folder</span><span style="color: #007700;">.</span><span style="color: #dd0000;">"/"</span><span style="color: #007700;">.</span><span style="color: #0000bb;">$today</span><span style="color: #007700;">.</span><span style="color: #dd0000;">".gif"</span><span style="color: #007700;">)) {

  echo </span><span style="color: #dd0000;">"&lt;img src="$image_folder/"</span><span style="color: #007700;">.</span><span style="color: #0000bb;">$today</span><span style="color: #007700;">.</span><span style="color: #dd0000;">".gif"&gt;"</span><span style="color: #007700;">;

}

else {

  echo </span><span style="color: #dd0000;">"No image was found for $today"</span><span style="color: #007700;">;

}

</span><span style="color: #0000bb;">?&gt;</span> </span>
</code></pre>
<div style='display:none' id="post-refEl-96"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/display-a-different-image-for-each-day-of-the-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP code to get user IP and Ban by IP</title>
		<link>http://www.freshtuts.net/ban-by-ip/</link>
		<comments>http://www.freshtuts.net/ban-by-ip/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 17:00:56 +0000</pubDate>
		<dc:creator>Bulent</dc:creator>
				<category><![CDATA[Php Scripts]]></category>
		<category><![CDATA[ip ban]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://www.freshtuts.net/?p=66</guid>
		<description><![CDATA[PHP code to get user IP and compare to others ...]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: underline;">PHP code to get user IP and compare to others in a file, and ban if they match.</span><span style="text-decoration: underline;"><br />
</span></p>
<p>This code snippet will read the IP&#8217;s  from the txt file with your IP&#8217;s listed that you would like to ban, this code will check the visitors IP and compare it to your list if same ip in the text file than they will be banned.</p>
<p> How to;</p>
<p>1. Insert the code snippet to your php page.</p>
<p>2. Create a text file called ( <span style="color: #ff0000;">IP.txt </span>) and fill it with the ip&#8217;s that you would like to ban, make sure each ip is on its own line.</p>
<p><span style="color: #ff0000;">Note: make sure your path to text file is reflected to the code.</span></p>
<pre class="brush: php">$ip = $_SERVER[&#039;REMOTE_ADDR&#039;];
$ipArray = preg_replace(&quot;#\r\n?|\n#&quot;,&quot;&quot;,file(&#039;IP.txt&#039;));
foreach ($ipArray as $ipTest) {
  if (substr_count($ip, $ipTest) != &quot;0&quot;) {
    header(&#039;location: http://google.com&#039;);
    die();
  }
}</pre>
<p> </p>
<div style='display:none' id="post-refEl-66"></div>]]></content:encoded>
			<wfw:commentRss>http://www.freshtuts.net/ban-by-ip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

