<?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 and designers &#124; Complete resource platform for web designers and developers</title>
	<atom:link href="http://www.webanddesigners.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.webanddesigners.com</link>
	<description>Web blog to help web designers and developers</description>
	<lastBuildDate>Wed, 24 Feb 2010 12:12:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Introduction to PHP &#8211; Part10</title>
		<link>http://www.webanddesigners.com/introduction-to-php-part10</link>
		<comments>http://www.webanddesigners.com/introduction-to-php-part10#comments</comments>
		<pubDate>Wed, 16 Dec 2009 11:37:01 +0000</pubDate>
		<dc:creator>BRD</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[begineers]]></category>
		<category><![CDATA[php begineers]]></category>
		<category><![CDATA[PHP class]]></category>
		<category><![CDATA[PHP Object]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.webanddesigners.com/?p=1014</guid>
		<description><![CDATA[Classes and Objects:
The programming paradigm we have learned so far is called Procedural Paradigm. In Procedural programming paradigm, programmer writes a program as collections of independently behaving procedures and makes use of procedure call to access those procedures. As we already discussed in Part8, how procedural programming is a better choice than a simple unstructured [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>Classes and Objects:</strong></h2>
<p>The programming paradigm we have learned so far is called Procedural Paradigm. In Procedural programming paradigm, programmer writes a program as collections of independently behaving procedures and makes use of procedure call to access those procedures. As we already discussed in Part8, how procedural programming is a better choice than a simple unstructured programming. It has been a long time, programmers have started thinking about new paradigm called Object oriented paradigm (OOP) which provides a better way to develop big and complex system than procedural programming. We don’t want to confuse readers by putting too complex terms and advantages of OOP at this stage, we will discuss when required.<span id="more-1014"></span></p>
<p>In OOP, a class is a language construct that is used as a template or blue print to create instances of class called objects. This tutorial explains step by step to make the things clear. </p>
<p><strong>Creating Class</strong></p>
<p><strong>Example#1</strong></p>
<p>The example below creates a class called Person. It has two instance variables; name and address and few methods. The instance variables are not accessible outside the class when they are defined as private; we need methods to access them. But public variable can be accessed outside the class. All instance variables should be kept private and there should be some methods to access those variables. Here, we have SET and GET methods which are be public. All methods should be public; otherwise they cannot be accessed outside the class.</p>
<p>After the end of class, we have created a instance “p” of class “Person”. “p” is called object of class “Person”. Note that, “p” object binds instance variables and methods together, that property of OOP is known as <em>encapsulation</em>.</p>
<pre class="brush: php;">
&lt;?php
class Person
{
// Properties or Instance variables
private $name;
private $address;

//Methods or behaviours
//set methods are used to set the instance variables
              public function setName($aName)
             {
	         $this-&gt;name= $aName;
    	}
	public function setAddress($aAddress)
	{
       		$this-&gt;address= $aAddress;
    	}
	//get methods are used to get the instance variables
	public function getName()
	{
      		 return $this-&gt;name;
    	}
	public function getAddress()
	{
        		return $this-&gt;address;
    	}
}// end of class

//create a object of Person class
$p = new Person();
//Set name
$p-&gt;setName(&quot;Gary Tom&quot;);
//Set address
$p-&gt;setAddress(&quot;Unit 10 Nelson Bay, NSW 2030 Australia&quot;);
//Print name
echo $p-&gt;getName();
//Print Address
echo $p-&gt;getAddress();
?&gt;
</pre>
<p>The output of the above code will be<br />
Gary Tom Unit 10 Nelson Bay, NSW 2030 Australia</p>
<p><strong>Constructor and Destructor</strong></p>
<p>When we create an object constructor method is called, hence it is useful to initialize the instance variables before they are ready to use. Similarly, destructor method is called when we destroy the objects.</p>
<p><strong>Example#2</strong></p>
<p>The code we have in this example produces the same output as in example#1, but has been implemented in a different way. Here we initialize the instance variables using constructors.</p>
<pre class="brush: php;">
&lt;?php
class Person
{
    	// Properties or Instance variables
   	 private $name;
	private $address;

	//Default Constructor
	public function __construct()
	{
       		$this-&gt;name= &quot;Gary Tom&quot;;
	   	$this-&gt;address= &quot;Unit 10 Nelson Bay, NSW 2030 Australia&quot;;
   	}
      	//Default Destructor
   	function __destruct()
   	{
     		//This portion of the code will be executed when
	 	// we destroy an object explicitly.
   	}

  	//get methods are used to get the instance variables
	public function getName()
	{
       		return $this-&gt;name;
    	}
	public function getAddress()
	{
        		return $this-&gt;address;
    	}
}// end of class

//create a object of Person class
$p = new Person();
//Print name
echo $p-&gt;getName();
//Print Address
echo $p-&gt;getAddress();
?&gt;
</pre>
<p>This code will also produces the same output as in example#1, that is<br />
Gary Tom Unit 10 Nelson Bay, NSW 2030 Australia</p>
<p><strong>Inheritance</strong></p>
<p>As the name suggests, inheritance is a principle by which child class can inherit the methods form its parent class and the methods performs their original functionality.</p>
<p><strong>Example#3</strong></p>
<p>In this example, we extend a class called <em>Student</em> from the class <em>Person</em>. The subclass <em>Student</em> inherits <em>printMe</em> methods and all instance variables from the parent class <em>Person</em>. The <em>printMe</em> method of <em>Person</em> class has been rewritten with the same name in <em>Student</em> class. If a method with same name exists in parent and child class, the child class object has two version of the same module. In this situation the child class method overrides the parent class method, it known as method overriding.  When we call <em>printMe</em> method of <em>Student</em> object, it calls <em>printMe</em> of <em>Student</em> class not the <em>printMe</em> of <em>Person</em> class. Remember that all data members of Person class are available in Student class.</p>
<pre class="brush: php;">
&lt;?php
class Person
{
    	// Properties or Instance variables
    	private $name;
	private $address;

   	//Function to print Instance variables
   	public function printMe()
   	{
   		echo $this-&gt;name.&quot;, &quot;.$this-&gt;address;
   	}
}// end of Person class

//Student class, inherits from Person class
class Student extends Person
{
	//Instance variables, remember that name and address is inherited from Person
	private $program;

	//Default Constructor
	public function __construct()
	{
       		$this-&gt;name= &quot;Gary Tom&quot;;
	   	$this-&gt;address= &quot;Unit 10 Nelson Bay NSW 2030 Australia&quot;;
	   	$this-&gt;program= &quot;Masters in IT&quot;;
   	}

   	public function printMe()
   	{
   		echo $this-&gt;name.&quot;, &quot;.$this-&gt;address.&quot;, &quot;.$this-&gt;program;
   	}
}// end of Student class

//create a object of Person class
$s = new Student();
//Print s
$s-&gt;printMe();
?&gt;
</pre>
<p>The output of the above code will be<br />
Gary Tom, Unit 10 Nelson Bay NSW 2030 Australia, Masters in IT</p>
<p>This tutorial tries to describe Classes and Objects in short, for a complete reference please visit http://www.php.net/manual/en/language.oop5.php</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanddesigners.com/introduction-to-php-part10/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Introduction to PHP &#8211; Part9</title>
		<link>http://www.webanddesigners.com/introduction-to-php-part9</link>
		<comments>http://www.webanddesigners.com/introduction-to-php-part9#comments</comments>
		<pubDate>Sun, 06 Dec 2009 07:03:05 +0000</pubDate>
		<dc:creator>BRD</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[GET]]></category>
		<category><![CDATA[get method]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[POST]]></category>
		<category><![CDATA[post method]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.webanddesigners.com/?p=983</guid>
		<description><![CDATA[Forms:
A form is an area where user can input data. The place in the form where user input data is called form element. A form element can be a text field, text area field, drop-down list, radio buttons and checkbox. In this tutorial we will apply the knowledge we have gained so far and use [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>Forms:</strong></h2>
<p>A form is an area where user can input data. The place in the form where user input data is called form element. A form element can be a text field, text area field, drop-down list, radio buttons and checkbox. In this tutorial we will apply the knowledge we have gained so far and use it with HTML forms. The best thing to use PHP with HTML is that any elements in HTML forms are directly available in PHP scripts. That means the data entered in HTML forms can be manipulated using PHP scripts.<span id="more-983"></span></p>
<p><strong>Creating form</strong></p>
<p>A form is created using &lt;form&gt; tag. To learn more about HTML please refer to HTML tutorials available in net. Let us start with a simple HTML form that we use for user feedback.</p>
<p><strong>Example#1</strong></p>
<pre class="brush: php;">
&lt;html&gt;
&lt;body&gt;
&lt;form &gt;
 &lt;p&gt;Name : &lt;input type=&quot;text&quot; name=&quot;name&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;Email : &lt;input type=&quot;text&quot; name=&quot;email&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;Subject : &lt;input type=&quot;text&quot; name=&quot;subject&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;Message : &lt;br/&gt;
 &lt;textarea rows=&quot;10&quot; cols=&quot;30&quot;&gt; &lt;/textarea&gt;
 &lt;p&gt;&lt;input type=&quot;submit&quot; /&gt;&lt;/p&gt;
&lt;/form&gt;
&lt;/body&gt;
</pre>
<p>The output of the above HTML code will be<br />
<img class="alignnone" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/Form.jpg" alt="" width="286" height="374" /></p>
<p><strong>Collecting information from HTML form using POST method</strong></p>
<p>As we already mentioned, the best thing to use PHP with HTML is that any elements in HTML forms are directly available in PHP scripts. After filling the form, when we pressed <em>Submit Query</em> button, everything we filled in the form will be available in PHP script.</p>
<p><strong>Example#2</strong></p>
<pre class="brush: php;">
&lt;html&gt;
&lt;body&gt;
&lt;form action=&quot;action.php&quot; method=&quot;post&quot;&gt;
 &lt;p&gt;Name : &lt;input type=&quot;text&quot; name=&quot;name&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;Email : &lt;input type=&quot;text&quot; name=&quot;email&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;Subject : &lt;input type=&quot;text&quot; name=&quot;subject&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;Message : &lt;br/&gt;
 &lt;textarea rows=&quot;10&quot; cols=&quot;30&quot;&gt; &lt;/textarea&gt;
 &lt;p&gt;&lt;input type=&quot;submit&quot; /&gt;&lt;/p&gt;
&lt;/form&gt;
&lt;/body&gt;
</pre>
<p>We can notice that we added <em>action</em> and <em>method</em> in the above code, which tells the server what <em>action</em> is to be taken and what <em>method</em> is to be used. In this example, when we click on <em>Submit Query</em> button the page <em>action.php</em> is called and the <em>method</em> used is <em>post</em>. In order to access the form elements we should write <em>action.php</em> like this. Note that the file name should be <em>action.php</em> and saved in the same directory.</p>
<p><strong>action.php</strong></p>
<pre class="brush: php;">
&lt;?php
echo $_POST[&quot;name&quot;].&quot;&lt;br/&gt;&quot;;
echo $_POST[&quot;email&quot;].&quot;&lt;br/&gt;&quot;;
echo $_POST[&quot;subject&quot;].&quot;&lt;br/&gt;&quot;;
echo $_POST[&quot;message&quot;];
?&gt;
</pre>
<p>When we fill the form and click the submit button, <em>action.php</em> will be called, the URL will look like <a href="http://webanddesigners.com/action.php">http://webanddesigners.com/action.php</a>. Information filled in the form is now available in action.php page. <em>post</em> method use $_POST array to save the form information, the name of the form fields will be the key in the $_POST array.</p>
<p><strong>Collecting information from HTML form using GET method</strong></p>
<p>The following code is exactly same as code in example#2, except that the method used here is GET.</p>
<p><strong>Example#3</strong></p>
<pre class="brush: php;">
&lt;html&gt;
&lt;body&gt;
&lt;form action=&quot;action.php&quot; method=&quot;get&quot;&gt;
 &lt;p&gt;Name : &lt;input type=&quot;text&quot; name=&quot;name&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;Email : &lt;input type=&quot;text&quot; name=&quot;email&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;Subject : &lt;input type=&quot;text&quot; name=&quot;subject&quot; /&gt;&lt;/p&gt;
 &lt;p&gt;Message : &lt;br/&gt;
 &lt;textarea rows=&quot;10&quot; cols=&quot;30&quot;&gt; &lt;/textarea&gt;
 &lt;p&gt;&lt;input type=&quot;submit&quot; /&gt;&lt;/p&gt;
&lt;/form&gt;
&lt;/body&gt;
</pre>
<p>action.php will look like as the following code. Note that when GET method is used the data elements are available in $_GET array. The data elements are accessed in the similar fashion.</p>
<p><strong>action.php</strong></p>
<pre class="brush: php;">
&lt;?php
echo $_GET[&quot;name&quot;].&quot;&lt;br/&gt;&quot;;
echo $_GET[&quot;email&quot;].&quot;&lt;br/&gt;&quot;;
echo $_GET[&quot;subject&quot;].&quot;&lt;br/&gt;&quot;;
echo $_GET[&quot;message&quot;];
?&gt;
</pre>
<p><strong>Comparison of GET and POST method</strong></p>
<p>When we use GET method, the information sent is visible. It will display the variable and value in browser’s address bar. The address bar will look like <a href="http://webanddesigners.com/action.php?name=John&amp;email=john@webanddesigner.com&amp;subject=hi&amp;message=This+is+the+test+message+using+get+method">http://webanddesigners.com/action.php?name=John&amp;email=john@webanddesigner.com&amp;subject=hi&amp;message=This+is+the+test+message+using+get+method</a>. There is a limitation in the amount of data send using GET method, maximum of 100 characters can be send. One best thing about GET method is that, the page can be bookmarked; this is because all the variables and data are available in URL.</p>
<p>When we use POST method the information sent is completely invisible. In addition, there is no restriction on the amount of information to be sent. Up to 8mb of data can be sent using POST method. However, because data and variables are not available in URL, it is not possible to bookmark the page. The URL will look like <a href="http://webanddesigners.com/action.php">http://webanddesigners.com/action.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanddesigners.com/introduction-to-php-part9/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>15 wordpress plugins for galleries and slideshows</title>
		<link>http://www.webanddesigners.com/15-wordpress-plugins-for-galleries-and-slideshows</link>
		<comments>http://www.webanddesigners.com/15-wordpress-plugins-for-galleries-and-slideshows#comments</comments>
		<pubDate>Sat, 05 Dec 2009 14:14:59 +0000</pubDate>
		<dc:creator>Snigdha</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress gallery]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.webanddesigners.com/?p=953</guid>
		<description><![CDATA[We create blog, so that the information that we want to share can be easily flowed or given to the niche market .Words can at time not express the correct state of mind, but visual image can in every ways. With images you can easily show to the world what you are really trying to [...]]]></description>
			<content:encoded><![CDATA[<p>We create blog, so that the information that we want to share can be easily flowed or given to the niche market .Words can at time not express the correct state of mind, but visual image can in every ways. With images you can easily show to the world what you are really trying to portray. Image and visual has great effect towards the visitor. So if you are into blog you need to have an image gallery that makes an effect to the crowd you are narrating. </p>
<p>Here I am going to share the best ways in which you can make you image gallery look magnificent using  image gallery WordPress Plugins.</p>
<p>&nbsp;</p>
<h2>1. <a href="http://wordpress.org/extend/plugins/nextgen-gallery/">NextGEN Gallery</a></h2>
<p>With Flash slideshow option Nextgen stands out as it is a full integrated Image Gallery plugin for WordPress. Templates .You can make your gallery attractive with the custom templates .It mobilizes the gallery through making it possible to move the images between galleries .Overall this plug-in helps you mobilize the gallery.<br />
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="NextGEN Gallery" href="http://wordpress.org/extend/plugins/nextgen-gallery/"><img class="size-full" title="NextGEN Gallery" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/wordpress-gallery-plugins/nextgen.jpg" alt="NextGEN Gallery" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Lightbox Gallery</p></div><br />
<a href="http://wordpress.org/extend/plugins/nextgen-gallery/" target="_blank">Link to plugin</a><br />
<a href="http://alexrabe.de/?page_id=80" target="_blank">Link to plugin Homepage</a></p>
<p>&nbsp;</p>
<h2>2. <a href="http://wordpress.org/extend/plugins/lightbox-gallery/">Lightbox Gallery</a></h2>
<p>This plugin helps you as it changes the look of the gallery to the light box.<br />
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Lightbox Gallery" href="http://wordpress.org/extend/plugins/lightbox-gallery/"><img class="size-full" title="Lightbox Gallery" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/wordpress-gallery-plugins/lightbox.jpg" alt="Lightbox Gallery" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Lightbox Gallery</p></div><br />
<a href="http://wordpress.org/extend/plugins/lightbox-gallery/" target="_blank">Link to plugin</a><br />
<a href="http://wpgogo.com/development/lightbox-gallery.html" target="_blank">Link to plugin Homepage</a></p>
<p>&nbsp;</p>
<h2>3. <a href="http://wordpress.org/extend/plugins/photosmash-galleries/">PhotoSmash Galleries</a></h2>
<p>A user contributable photo gallery is what makes this plugin so special. This plugin makes it simple to create photo galleries in posts such that your users can upload images in it without complexity.<br />
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="PhotoSmash Galleries" href="http://wordpress.org/extend/plugins/photosmash-galleries/"><img class="size-full" title="PhotoSmash Galleries" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/wordpress-gallery-plugins/photosmash.jpg" alt="PhotoSmash Galleries" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">PhotoSmash Galleries</p></div><br />
<a href="http://wordpress.org/extend/plugins/photosmash-galleries/" target="_blank">Link to plugin</a><br />
<a href="http://smashly.net/photosmash-galleries/" target="_blank">Link to plugin Homepage</a></p>
<p>&nbsp;</p>
<h2>4. <a href="http://wordpress.org/extend/plugins/kpicasa-gallery/">kPicasa Gallery</a></h2>
<p>With PHP5 as a basic component, Picasa web galleries are displayed in a post or in a page simply by creating a post or a page with a special keyword. To your delight your images are placed on the Picasa Web Gallery server .this plugin provides you with the choice for displaying the large version of your photos using Highslide, Lightbox, Slimbox or Thickbox.<br />
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="kPicasa Gallery" href="http://wordpress.org/extend/plugins/kpicasa-gallery/"><img class="size-full" title="kPicasa Gallery" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/wordpress-gallery-plugins/kpicasa.jpg" alt="kPicasa Gallery" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">kPicasa Gallery</p></div><br />
<a href="http://wordpress.org/extend/plugins/kpicasa-gallery/" target="_blank">Link to plugin</a><br />
<a href="http://www.boloxe.com/techblog/" target="_blank">Link to plugin Homepage</a></p>
<p>&nbsp;</p>
<h2>5. <a href="http://wordpress.org/extend/plugins/post-rich-videos-and-photos-galleries/">Post videos and photo galleries</a></h2>
<p>All your multimedia need can be fulfilled by this plugins. As this is one professional platform which takes care of your desire and demand related to multimedia .<br />
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Post videos and photo galleries" href="http://wordpress.org/extend/plugins/post-rich-videos-and-photos-galleries/"><img class="size-full" title="Post videos and photo galleries" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/wordpress-gallery-plugins/post.jpg" alt="Post videos and photo galleries" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Post videos and photo galleries</p></div><br />
<a href="http://wordpress.org/extend/plugins/post-rich-videos-and-photos-galleries/" target="_blank">Link to plugin</a><br />
<a href="http://www.cincopa.com/wpplugin/wordpress-plugin.aspx" target="_blank">Link to plugin Homepage</a></p>
<p>&nbsp;</p>
<h2>6. <a href="http://wordpress.org/extend/plugins/lazyest-gallery/">Lazyest Gallery</a></h2>
<p>Things can&#8217;t get better with this as it is fully integrated with automatic slide and thumb creation .It eases you by managing comment per images or folders and makes and arrangement of folder and image by date alphabetically or manually. It reduces boredom of uploading as it has Windows Xp upload wizard which uploads many files at once. It cant get better until you use it.<br />
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Lazyest Gallery" href="http://wordpress.org/extend/plugins/lazyest-gallery/"><img class="size-full" title="Lazyest Gallery" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/wordpress-gallery-plugins/lazyest.jpg" alt="Lazyest Gallery" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Lazyest Gallery</p></div><br />
<a href="http://wordpress.org/extend/plugins/lazyest-gallery/" target="_blank">Link to plugin</a><br />
<a href="http://brimosoft.nl/lazyest/" target="_blank">Link to plugin Homepage</a></p>
<p>&nbsp;</p>
<h2>7. <a href="http://wordpress.org/extend/plugins/dynamic-content-gallery-plugin/">Dynamic Content Gallery</a></h2>
<p>Using mootools framework this plugin is driven by SmoothGallery which creates an excellent dynamic gallery of images for latest and/or featured posts. Using Post Custom Fields it connects your gallery images with individual posts.<br />
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Dynamic Content Gallery" href="http://wordpress.org/extend/plugins/dynamic-content-gallery-plugin/"><img class="size-full" title="Dynamic Content Gallery" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/wordpress-gallery-plugins/featured.jpg" alt="Dynamic Content Gallery" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Dynamic Content Gallery</p></div><br />
<a href="http://wordpress.org/extend/plugins/dynamic-content-gallery-plugin/" target="_blank">Link to plugin</a><br />
<a href="http://www.studiograsshopper.ch/wordpress-plugins/dynamic-content-gallery-plugin-v2/" target="_blank">Link to plugin Homepage</a></p>
<p>&nbsp;</p>
<h2>8. <a href="http://wordpress.org/extend/plugins/nextgen-imageflow/">NextGEN-ImageFlow</a></h2>
<div class="wp-caption aligncenter" style="width: 587px">
<p style="text-align: center;"><a title="NextGEN-ImageFlow" href="http://wordpress.org/extend/plugins/nextgen-imageflow/"><img class="size-full" title="NextGEN-ImageFlow" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/wordpress-gallery-plugins/imageflow.jpg" alt="NextGEN-ImageFlow" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">NextGEN-ImageFlow</p></div><br />
<a href="http://wordpress.org/extend/plugins/nextgen-imageflow/" target="_blank">Link to plugin</a><br />
<a href="http://shabushabu-webdesign.com/wp-plugin-nextgen-imageflow/" target="_blank">Link to plugin Homepage</a></p>
<p>&nbsp;</p>
<h2>9. <a href="http://wordpress.org/extend/plugins/nextgen-flashviewer/">NextGEN-FlashViewer</a></h2>
<p>As the name suggests it is the famous adobe flash Plugins from Airtight Interactive for NextGEN Gallery.<br />
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="NextGEN-FlashViewer" href="http://wordpress.org/extend/plugins/nextgen-flashviewer/"><img class="size-full" title="NextGEN-FlashViewer" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/wordpress-gallery-plugins/flash.jpg" alt="NextGEN-FlashViewer" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">NextGEN-FlashViewer</p></div><br />
<a href="http://wordpress.org/extend/plugins/nextgen-flashviewer/" target="_blank">Link to plugin</a><br />
<a href="http://shabushabu-webdesign.com/wp-plugin-nextgen-flashviewer/" target="_blank">Link to plugin Homepage</a></p>
<p>&nbsp;</p>
<h2>10. <a href="http://wordpress.org/extend/plugins/wordpress-gallery-slideshow/">WordPress Gallery Slideshow</a></h2>
<div class="wp-caption aligncenter" style="width: 587px">
<p style="text-align: center;"><a title="WordPress Gallery Slideshow" href="http://wordpress.org/extend/plugins/wordpress-gallery-slideshow/"><img class="size-full" title="WordPress Gallery Slideshow" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/wordpress-gallery-plugins/gallery.jpg" alt="WordPress Gallery Slideshow" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">WordPress Gallery Slideshow</p></div><br />
<a href="http://wordpress.org/extend/plugins/wordpress-gallery-slideshow/" target="_blank">Link to plugin</a><br />
<a href="http://myplugins.org/plugins/2009-06-26/wordpress-gallery-slideshow.html" target="_blank">Link to plugin Homepage</a></p>
<p>&nbsp;</p>
<h2>11. <a href="http://wordpress.org/extend/plugins/flickr-slideshow-wrapper/">Flickr-slideshow-wrapper</a></h2>
<div class="wp-caption aligncenter" style="width: 587px">
<p style="text-align: center;"><a title="Flickr-slideshow-wrapper" href="http://wordpress.org/extend/plugins/flickr-slideshow-wrapper/"><img class="size-full" title="Flickr-slideshow-wrapper" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/wordpress-gallery-plugins/flickr.jpg" alt="Flickr-slideshow-wrapper" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Flickr-slideshow-wrapper</p></div><br />
<a href="http://wordpress.org/extend/plugins/flickr-slideshow-wrapper/" target="_blank">Link to plugin</a><br />
<a href="http://www.ramgad.com/fssw/" target="_blank">Link to plugin Homepage</a></p>
<p>&nbsp;</p>
<h2>12. <a href="http://wordpress.org/extend/plugins/gallery-widget/">Gallery Widget</a></h2>
<p>If you want your latest/random images of the word press media gallery inside a widget, directly in your templates this Gallery widget makes it happen.<br />
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Gallery Widget" href="http://wordpress.org/extend/plugins/gallery-widget/"><img class="size-full" title="Gallery Widget" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/wordpress-gallery-plugins/widget.jpg" alt="Gallery Widget" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Gallery Widget</p></div><br />
<a href="http://wordpress.org/extend/plugins/gallery-widget/" target="_blank">Link to plugin</a><br />
<a href="http://blog.splash.de/plugins/gallery-widget/" target="_blank">Link to plugin Homepage</a></p>
<p>&nbsp;</p>
<h2>13. <a href="http://wordpress.org/extend/plugins/yet-another-photoblog/">Yet Another Photoblog</a></h2>
<p>It’s in your hand to exploit the big platform of Word press. In virtually no time this plugin helps you convert your Word Press Blog into a full featured photoblog.<br />
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Yet Another Photoblog" href="http://wordpress.org/extend/plugins/yet-another-photoblog/"><img class="size-full" title="Yet Another Photoblog" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/wordpress-gallery-plugins/photoblog.jpg" alt="Yet Another Photoblog" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Yet Another Photoblog</p></div><br />
<a href="http://wordpress.org/extend/plugins/yet-another-photoblog/" target="_blank">Link to plugin</a><br />
<a href="http://johannes.jarolim.com/yapb" target="_blank">Link to plugin Homepage</a></p>
<p>&nbsp;</p>
<h2>14. <a href="http://wordpress.org/extend/plugins/fotobook/">Fotobook</a></h2>
<p>Face book is very popular these days this plugin helps you link to your Facebook account. It imports all of your photo albums for use in your Word Press installation<br />
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Fotobook" href="http://wordpress.org/extend/plugins/fotobook/"><img class="size-full" title="Fotobook" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/wordpress-gallery-plugins/fotobook.jpg" alt="Fotobook" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Fotobook</p></div><br />
<a href="http://wordpress.org/extend/plugins/fotobook/" target="_blank">Link to plugin</a><br />
<a href="http://www.aaronharp.com/dev/wp-fotobook/" target="_blank">Link to plugin Homepage</a></p>
<p>&nbsp;</p>
<h2>15. <a href="http://wordpress.org/extend/plugins/cleaner-gallery/">Cleaner Gallery</a></h2>
<p>As the name suggests it get you get free from all the trouble by validating the appalling XHTML that Word Press emits. It provides you with varied options, you can make your gallery your way allowing you to exclude or include any images. With multiple galleries in a single post the cleaner gallery makes you the boss as it doesn&#8217;t load any JavaScript unless you want to.<br />
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Cleaner Gallery" href="http://wordpress.org/extend/plugins/cleaner-gallery/"><img class="size-full" title="Cleaner Gallery" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/wordpress-gallery-plugins/cleaner.jpg" alt="Cleaner Gallery" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Cleaner Gallery</p></div><br />
<a href="http://wordpress.org/extend/plugins/cleaner-gallery/" target="_blank">Link to plugin</a><br />
<a href="http://justintadlock.com/archives/2008/04/13/cleaner-wordpress-gallery-plugin" target="_blank">Link to plugin Homepage</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanddesigners.com/15-wordpress-plugins-for-galleries-and-slideshows/feed</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>40 best illustrator tutorials plus websites for illustrator tutorials</title>
		<link>http://www.webanddesigners.com/40-best-illustrator-tutorials-plus-websites-for-illustrator-tutorials</link>
		<comments>http://www.webanddesigners.com/40-best-illustrator-tutorials-plus-websites-for-illustrator-tutorials#comments</comments>
		<pubDate>Thu, 03 Dec 2009 13:14:31 +0000</pubDate>
		<dc:creator>WAD</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[illustrator]]></category>

		<guid isPermaLink="false">http://www.webanddesigners.com/?p=940</guid>
		<description><![CDATA[Web and graphic designing can&#8217;t be mastered without an inspirational art and passion .Illustrator is a standard way to bring your vision into existence and flow your creativity in the canvas of the software. Things can&#8217;t be gained or achieved without hard work, the illustrator gives you a chance to master the complexity and enhance [...]]]></description>
			<content:encoded><![CDATA[<p>Web and graphic designing can&#8217;t be mastered without an inspirational art and passion .Illustrator is a standard way to bring your vision into existence and flow your creativity in the canvas of the software. Things can&#8217;t be gained or achieved without hard work, the illustrator gives you a chance to master the complexity and enhance your designing skill through the advanced tools and option of Illustrator. <span id="more-940"></span></p>
<p>If you are a person who loves being recognized for creativity it is the right time to master the art of Illustrator and here we bring in to you the best of illustrator that will allow you to flourish as a creative head .</p>
<h2>1. <a href="http://vector.tutsplus.com/tutorials/illustration/how-to-create-a-rocketing-vector-aircraft-shuttle/">How to Create a Rocketing, Vector Aircraft Shuttle</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="How to Create a Rocketing, Vector Aircraft Shuttle" href="http://vector.tutsplus.com/tutorials/illustration/how-to-create-a-rocketing-vector-aircraft-shuttle/"><img class="size-full" title="How to Create a Rocketing, Vector Aircraft Shuttle" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/rocket.jpg" alt="How to Create a Rocketing, Vector Aircraft Shuttle" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">How to Create a Rocketing, Vector Aircraft Shuttle</p></div>
<p>&nbsp;</p>
<h2>2. <a href="http://www.blog.spoongraphics.co.uk/tutorials/create-a-rolling-stones-inspired-tongue-illustration">Create a Rolling Stones Inspired Tongue Illustration</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Create a Rolling Stones Inspired Tongue Illustration" href="http://www.blog.spoongraphics.co.uk/tutorials/create-a-rolling-stones-inspired-tongue-illustration"><img class="size-full" title="Create a Rolling Stones Inspired Tongue Illustration" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/lips.jpg" alt="Create a Rolling Stones Inspired Tongue Illustration" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Create a Rolling Stones Inspired Tongue Illustration</p></div>
<p>&nbsp;</p>
<h2>3. <a href="http://vector.tutsplus.com/tutorials/icon-design/how-to-create-a-photorealistic-imac-and-magic-mouse/">How to Create a Photorealistic iMac and Magic Mouse</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="How to Create a Photorealistic iMac and Magic Mouse" href="http://vector.tutsplus.com/tutorials/icon-design/how-to-create-a-photorealistic-imac-and-magic-mouse/"><img class="size-full" title="How to Create a Photorealistic iMac and Magic Mouse" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/mouse.jpg" alt="How to Create a Photorealistic iMac and Magic Mouse" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">How to Create a Photorealistic iMac and Magic Mouse</p></div>
<p>&nbsp;</p>
<h2>4. <a href="http://vectips.com/tutorials/create-a-happy-sun-character/heet">Create a Happy Sun Character </a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Create a Happy Sun Character " href="http://vectips.com/tutorials/create-a-happy-sun-character/heet"><img class="size-full" title="Create a Happy Sun Character " src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/sun.jpg" alt="Create a Happy Sun Character " width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Create a Happy Sun Character </p></div>
<p>&nbsp;</p>
<h2>5. <a href="http://www.vectordiary.com/illustrator/learn-illustrator-cs3-in-30-days/">Learn Illustrator CS3 in 30 Days</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Learn Illustrator CS3 in 30 Days" href="http://www.vectordiary.com/illustrator/learn-illustrator-cs3-in-30-days/"><img class="size-full" title="Learn Illustrator CS3 in 30 Days" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/30days.jpg" alt="Learn Illustrator CS3 in 30 Days" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Learn Illustrator CS3 in 30 Days</p></div>
<p>&nbsp;</p>
<h2>6. <a href="http://vector.tutsplus.com/tutorials/character-design/how-to-create-a-quirky-twitter-bird-in-corel-draw/">Quirky</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Quirky" href="http://vector.tutsplus.com/tutorials/character-design/how-to-create-a-quirky-twitter-bird-in-corel-draw/"><img class="size-full" title="Quirky" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/quirky.jpg" alt="Quirky" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Quirky</p></div>
<p>&nbsp;</p>
<h2>7. <a href="http://www.blog.spoongraphics.co.uk/tutorials/trendy-geometric-lines-design-tutorial">Trendy Geometric Lines Design Tutorial</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Trendy Geometric Lines Design Tutorial" href="http://www.blog.spoongraphics.co.uk/tutorials/trendy-geometric-lines-design-tutorial"><img class="size-full" title="Trendy Geometric Lines Design Tutorial" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/geometric.jpg" alt="Trendy Geometric Lines Design Tutorial" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Trendy Geometric Lines Design Tutorial</p></div>
<p>&nbsp;</p>
<h2>8. <a href="http://www.gomediazine.com/tutorials/a-pseudo-sugar-skull-from-start-to-finish/">A Pseudo-Sugar Skull: From Start to Finish.</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="A Pseudo-Sugar Skull: From Start to Finish." href="http://www.gomediazine.com/tutorials/a-pseudo-sugar-skull-from-start-to-finish/"><img class="size-full" title="A Pseudo-Sugar Skull: From Start to Finish." src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/skull.jpg" alt="A Pseudo-Sugar Skull: From Start to Finish." width="577" height="200" /></a></p>
<p><p class="wp-caption-text">A Pseudo-Sugar Skull: From Start to Finish.</p></div>
<p>&nbsp;</p>
<h2>9. <a href="http://www.rob-barrett.com/post/tutorial-twitterlove-bird-from-sketch-to-vector-in-photoshop-and-illustrator">Twitterlove Bird, from sketch to vector </a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Twitterlove Bird, from sketch to vector " href="http://www.rob-barrett.com/post/tutorial-twitterlove-bird-from-sketch-to-vector-in-photoshop-and-illustrator"><img class="size-full" title="Twitterlove Bird, from sketch to vector " src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/twitter.jpg" alt="Twitterlove Bird, from sketch to vector " width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Twitterlove Bird, from sketch to vector </p></div>
<p>&nbsp;</p>
<h2>10. <a href="http://vector.tutsplus.com/illustration/how-to-create-an-open-book-with-illustrators-3d-extrude-bevel-tool/">How to Create an Open Book with Illustrator’s 3D Extrude &#038; Bevel Tool</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="How to Create an Open Book with Illustrator’s 3D Extrude &#038; Bevel Tool" href="http://vector.tutsplus.com/illustration/how-to-create-an-open-book-with-illustrators-3d-extrude-bevel-tool/"><img class="size-full" title="How to Create an Open Book with Illustrator’s 3D Extrude &#038; Bevel Tool" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/book.jpg" alt="How to Create an Open Book with Illustrator’s 3D Extrude &#038; Bevel Tool" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">How to Create an Open Book with Illustrator’s 3D Extrude &#038; Bevel Tool</p></div>
<p>&nbsp;</p>
<h2>11. <a href="http://vector.tutsplus.com/tutorials/designing/turn-a-boring-bar-graph-into-a-3d-masterpiece/">Turn a Boring Bar Graph into a 3D Masterpiece</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Turn a Boring Bar Graph into a 3D Masterpiece" href="http://vector.tutsplus.com/tutorials/designing/turn-a-boring-bar-graph-into-a-3d-masterpiece/"><img class="size-full" title="Turn a Boring Bar Graph into a 3D Masterpiece" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/bar.jpg" alt="Turn a Boring Bar Graph into a 3D Masterpiece" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Turn a Boring Bar Graph into a 3D Masterpiece</p></div>
<p>&nbsp;</p>
<h2>12. <a href="http://www.digitalartsonline.co.uk/tutorials/index.cfm?featureID=1794">Master painting in Illustrator</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Master painting in Illustrator" href="http://www.digitalartsonline.co.uk/tutorials/index.cfm?featureID=1794"><img class="size-full" title="Master painting in Illustrator" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/master.jpg" alt="Master painting in Illustrator" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Master painting in Illustrator</p></div>
<p>&nbsp;</p>
<h2>13. <a href="http://www.blog.spoongraphics.co.uk/tutorials/how-to-create-a-vector-safari-compass-in-illustrator">How to Create a Vector Safari Compass in Illustrator</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="How to Create a Vector Safari Compass in Illustrator" href="http://www.blog.spoongraphics.co.uk/tutorials/how-to-create-a-vector-safari-compass-in-illustrator"><img class="size-full" title="How to Create a Vector Safari Compass in Illustrator" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/compass.jpg" alt="How to Create a Vector Safari Compass in Illustrator" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">How to Create a Vector Safari Compass in Illustrator</p></div>
<p>&nbsp;</p>
<h2>14. <a href="http://vector.tutsplus.com/tutorials/designing/make-a-torn-vector-desktop-wallpaper-with-angled-text/">Make a Torn Vector Desktop Wallpaper with Angled Text</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Make a Torn Vector Desktop Wallpaper with Angled Text" href="http://vector.tutsplus.com/tutorials/designing/make-a-torn-vector-desktop-wallpaper-with-angled-text/"><img class="size-full" title="Make a Torn Vector Desktop Wallpaper with Angled Text" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/wallpaper.jpg" alt="Make a Torn Vector Desktop Wallpaper with Angled Text" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Make a Torn Vector Desktop Wallpaper with Angled Text</p></div>
<p>&nbsp;</p>
<h2>15. <a href="http://www.blog.spoongraphics.co.uk/tutorials/how-to-create-a-crafts-inspired-vector-kids-illustration">How to Create a Crafts Inspired Vector Kids Illustration</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="How to Create a Crafts Inspired Vector Kids Illustration" href="http://www.blog.spoongraphics.co.uk/tutorials/how-to-create-a-crafts-inspired-vector-kids-illustration"><img class="size-full" title="How to Create a Crafts Inspired Vector Kids Illustration" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/kids.jpg" alt="How to Create a Crafts Inspired Vector Kids Illustration" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">How to Create a Crafts Inspired Vector Kids Illustration</p></div>
<p>&nbsp;</p>
<h2>16. <a href="http://great-design.blogspot.com/2007/09/drawing-homer-simpson-in-illustrator.html">Drawing homer simpson in illustrator</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Drawing homer simpson in illustrator" href="http://great-design.blogspot.com/2007/09/drawing-homer-simpson-in-illustrator.html"><img class="size-full" title="Drawing homer simpson in illustrator" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/bart.jpg" alt="Drawing homer simpson in illustrator" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Drawing homer simpson in illustrator</p></div>
<p>&nbsp;</p>
<h2>17. <a href="http://www.layersmagazine.com/blueprint-style-text-in-adobe-illustrator.html">Blueprint-Style Text in Adobe Illustrator</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Blueprint-Style Text in Adobe Illustrator" href="http://www.layersmagazine.com/blueprint-style-text-in-adobe-illustrator.html"><img class="size-full" title="Blueprint-Style Text in Adobe Illustrator" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/house.jpg" alt="Blueprint-Style Text in Adobe Illustrator" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Blueprint-Style Text in Adobe Illustrator</p></div>
<p>&nbsp;</p>
<h2>18. <a href="http://veerle.duoh.com/blog/comments/spraying_symbols_in_adobe_illustrator/">Praying Symbols in Adobe Illustrator</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Praying Symbols in Adobe Illustrator" href="http://veerle.duoh.com/blog/comments/spraying_symbols_in_adobe_illustrator/"><img class="size-full" title="Praying Symbols in Adobe Illustrator" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/leaf.jpg" alt="Praying Symbols in Adobe Illustrator" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Praying Symbols in Adobe Illustrator</p></div>
<p>&nbsp;</p>
<h2>19. <a href="http://vector.tutsplus.com/tutorials/illustration/tips-for-working-with-the-gradient-mesh-tool-in-illustrator/">Tips for Working with the Gradient Mesh Tool In Illustrator</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Tips for Working with the Gradient Mesh Tool In Illustrator" href="http://vector.tutsplus.com/tutorials/illustration/tips-for-working-with-the-gradient-mesh-tool-in-illustrator/"><img class="size-full" title="Tips for Working with the Gradient Mesh Tool In Illustrator" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/gradient.jpg" alt="Tips for Working with the Gradient Mesh Tool In Illustrator" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Tips for Working with the Gradient Mesh Tool In Illustrator</p></div>
<p>&nbsp;</p>
<h2>20. <a href="http://vector.tutsplus.com/tools-tips/illustrators-pen-tool-the-comprehensive-guide/">Illustrator’s Pen Tool: The Comprehensive Guide</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Illustrator’s Pen Tool: The Comprehensive Guide" href="http://vector.tutsplus.com/tools-tips/illustrators-pen-tool-the-comprehensive-guide/"><img class="size-full" title="Illustrator’s Pen Tool: The Comprehensive Guide" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/pen.jpg" alt="Illustrator’s Pen Tool: The Comprehensive Guide" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Illustrator’s Pen Tool: The Comprehensive Guide</p></div>
<p>&nbsp;</p>
<h2>21. <a href="http://vectips.com/tutorials/creating-editable-letterpress-styled-text/">Creating Editable Letterpress Styled Text</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Creating Editable Letterpress Styled Text" href="http://vectips.com/tutorials/creating-editable-letterpress-styled-text/"><img class="size-full" title="Creating Editable Letterpress Styled Text" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/vec.jpg" alt="name21" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Creating Editable Letterpress Styled Text</p></div>
<p>&nbsp;</p>
<h2>22. <a href="http://vector.tutsplus.com/tutorials/illustration/how-to-create-a-vector-wacom-tablet-in-illustrator/">How To Create A Vector Wacom Tablet In Illustrator</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="How To Create A Vector Wacom Tablet In Illustrator" href="http://vector.tutsplus.com/tutorials/illustration/how-to-create-a-vector-wacom-tablet-in-illustrator/"><img class="size-full" title="How To Create A Vector Wacom Tablet In Illustrator" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/tablet.jpg" alt="How To Create A Vector Wacom Tablet In Illustrator" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">How To Create A Vector Wacom Tablet In Illustrator</p></div>
<p>&nbsp;</p>
<h2>23. <a href="http://aiburn.com/article/building_a_website_wireframe_in_illustrator">Building a Website Wireframe in Illustrator</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Building a Website Wireframe in Illustrator" href="http://aiburn.com/article/building_a_website_wireframe_in_illustrator"><img class="size-full" title="Building a Website Wireframe in Illustrator" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/html.jpg" alt="Building a Website Wireframe in Illustrator" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Building a Website Wireframe in Illustrator</p></div>
<p>&nbsp;</p>
<h2>24. <a href="http://www.aivault.com/?p=154">Create an envelpe icon with a satin feel</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Create an envelpe icon with a satin feel" href="http://www.aivault.com/?p=154"><img class="size-full" title="Create an envelpe icon with a satin feel" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/email.jpg" alt="Create an envelpe icon with a satin feel" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Create an envelpe icon with a satin feel</p></div>
<p>&nbsp;</p>
<h2>25. <a href="http://www.digitalartsonline.co.uk/tutorials/index.cfm?featureID=1691">Creating convincing characters</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Creating convincing characters" href="http://www.digitalartsonline.co.uk/tutorials/index.cfm?featureID=1691"><img class="size-full" title="Creating convincing characters" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/character.jpg" alt="Creating convincing characters" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Creating convincing characters</p></div>
<p>&nbsp;</p>
<h2>26. <a href="http://abduzeedo.com/swirl-mania-illustrator-photoshop">Swirl Mania in Illustrator &#038; Photoshop</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Swirl Mania in Illustrator &#038; Photoshop" href="http://abduzeedo.com/swirl-mania-illustrator-photoshop"><img class="size-full" title="Swirl Mania in Illustrator &#038; Photoshop" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/abu.jpg" alt="Swirl Mania in Illustrator &#038; Photoshop" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Swirl Mania in Illustrator &#038; Photoshop</p></div>
<p>&nbsp;</p>
<h2>27. <a href="http://vector.tutsplus.com/tutorials/illustration/draw-a-realistic-vector-guitar-in-inkscape/">Draw A Realistic Vector Guitar in Inkscape</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Draw A Realistic Vector Guitar in Inkscape" href="http://vector.tutsplus.com/tutorials/illustration/draw-a-realistic-vector-guitar-in-inkscape/"><img class="size-full" title="Draw A Realistic Vector Guitar in Inkscape" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/guitar.jpg" alt="Draw A Realistic Vector Guitar in Inkscape" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Draw A Realistic Vector Guitar in Inkscape</p></div>
<p>&nbsp;</p>
<h2>28. <a href="http://www.blog.spoongraphics.co.uk/tutorials/create-a-bright-retro-grunge-vector-illustration">Create a Bright Retro Grunge Vector Illustration</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Create a Bright Retro Grunge Vector Illustration" href="http://www.blog.spoongraphics.co.uk/tutorials/create-a-bright-retro-grunge-vector-illustration"><img class="size-full" title="Create a Bright Retro Grunge Vector Illustration" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/bright.jpg" alt="Create a Bright Retro Grunge Vector Illustration" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Create a Bright Retro Grunge Vector Illustration</p></div>
<p>&nbsp;</p>
<h2>29. <a href="http://vector.tutsplus.com/tutorials/illustration/how-to-create-a-killer-chainsaw-bunny-character/">How to Create a Killer Chainsaw Bunny Character</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="How to Create a Killer Chainsaw Bunny Character" href="http://vector.tutsplus.com/tutorials/illustration/how-to-create-a-killer-chainsaw-bunny-character/"><img class="size-full" title="How to Create a Killer Chainsaw Bunny Character" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/bunny.jpg" alt="How to Create a Killer Chainsaw Bunny Character" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">How to Create a Killer Chainsaw Bunny Character</p></div>
<p>&nbsp;</p>
<h2>30. <a href="http://vector.tutsplus.com/tutorials/illustration/craft-a-vector-collegiate-notebook-design/">Craft a Vector Collegiate Notebook Desig</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Craft a Vector Collegiate Notebook Desig" href="http://vector.tutsplus.com/tutorials/illustration/craft-a-vector-collegiate-notebook-design/"><img class="size-full" title="Craft a Vector Collegiate Notebook Desig" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/note.jpg" alt="Craft a Vector Collegiate Notebook Desig" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Craft a Vector Collegiate Notebook Desig</p></div>
<p>&nbsp;</p>
<h2>31. <a href="http://www.ndesign-studio.com/resources/tutorials/tracing-photo/">Tracing Photo</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Tracing Photo" href="http://www.ndesign-studio.com/resources/tutorials/tracing-photo/"><img class="size-full" title="Tracing Photo" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/tracing.jpg" alt="Tracing Photo" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Tracing Photo</p></div>
<p>&nbsp;</p>
<h2>32. <a href="http://vector.tutsplus.com/tutorials/text-effects/creating-an-environmentally-friendly-green-type-treatment/">Creating an Environmentally Friendly Green Type Treatment</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Creating an Environmentally Friendly Green Type Treatment" href="http://vector.tutsplus.com/tutorials/text-effects/creating-an-environmentally-friendly-green-type-treatment/"><img class="size-full" title="Creating an Environmentally Friendly Green Type Treatment" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/vecleaf.jpg" alt="Creating an Environmentally Friendly Green Type Treatment" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Creating an Environmentally Friendly Green Type Treatment</p></div>
<p>&nbsp;</p>
<h2>33. <a href="http://www.blog.spoongraphics.co.uk/tutorials/logo-design-project-step-by-step-walkthrough">Logo Design Project Step by Step Walkthrough</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Logo Design Project Step by Step Walkthrough" href="http://www.blog.spoongraphics.co.uk/tutorials/logo-design-project-step-by-step-walkthrough"><img class="size-full" title="Logo Design Project Step by Step Walkthrough" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/nite.jpg" alt="Logo Design Project Step by Step Walkthrough" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Logo Design Project Step by Step Walkthrough</p></div>
<p>&nbsp;</p>
<h2>34. <a href="http://veerle.duoh.com/blog/comments/creating_geometric_patterns_in_illustrator/">Creating geometric patterns in Illustrator</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Creating geometric patterns in Illustrator" href="http://veerle.duoh.com/blog/comments/creating_geometric_patterns_in_illustrator/"><img class="size-full" title="Creating geometric patterns in Illustrator" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/pattern.jpg" alt="Creating geometric patterns in Illustrator" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Creating geometric patterns in Illustrator</p></div>
<p>&nbsp;</p>
<h2>35. <a href="http://www.computerarts.co.uk/tutorials/2d__and__photoshop/create_a_tasty_skate_deck_graphic">Create a tasty skate deck graphic</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Create a tasty skate deck graphic" href="http://www.computerarts.co.uk/tutorials/2d__and__photoshop/create_a_tasty_skate_deck_graphic"><img class="size-full" title="Create a tasty skate deck graphic" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/tasty.jpg" alt="Create a tasty skate deck graphic" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Create a tasty skate deck graphic</p></div>
<p>&nbsp;</p>
<h2>36. <a href="http://aiburn.com/article/draw_your_self_portrait">Draw Your Self Portrait</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Draw Your Self Portrait" href="http://aiburn.com/article/draw_your_self_portrait"><img class="size-full" title="Draw Your Self Portrait" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/sean.jpg" alt="Draw Your Self Portrait" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Draw Your Self Portrait</p></div>
<p>&nbsp;</p>
<h2>37. <a href="http://www.layersmagazine.com/leather-stylin-illustrator.html">Leather Stylin’ in Illustrator</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Leather Stylin’ in Illustrator" href="http://www.layersmagazine.com/leather-stylin-illustrator.html"><img class="size-full" title="Leather Stylin’ in Illustrator" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/southern.jpg" alt="Leather Stylin’ in Illustrator" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Leather Stylin’ in Illustrator</p></div>
<p>&nbsp;</p>
<h2>38. <a href="http://www.myinkblog.com/2008/08/10/design-with-swirls-and-flourishes/">Design with Swirls and Flourishes</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Design with Swirls and Flourishes" href="http://www.myinkblog.com/2008/08/10/design-with-swirls-and-flourishes/"><img class="size-full" title="Design with Swirls and Flourishes" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/swirls.jpg" alt="Design with Swirls and Flourishes" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Design with Swirls and Flourishes</p></div>
<p>&nbsp;</p>
<h2>39. <a href="http://mosquitosplace.com/2008/10/disco-ball-tutorial/">Disco Ball Tutorial</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Disco Ball Tutorial" href="http://mosquitosplace.com/2008/10/disco-ball-tutorial/"><img class="size-full" title="Disco Ball Tutorial" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/disco.jpg" alt="Disco Ball Tutorial" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Disco Ball Tutorial</p></div>
<p>&nbsp;</p>
<h2>40. <a href="http://www.blog.spoongraphics.co.uk/tutorials/create-a-rotatable-globe-in-adobe-illustrator">Create a Rotatable Globe in Adobe Illustrator</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Create a Rotatable Globe in Adobe Illustrator" href="http://www.blog.spoongraphics.co.uk/tutorials/create-a-rotatable-globe-in-adobe-illustrator"><img class="size-full" title="Create a Rotatable Globe in Adobe Illustrator" src="http://www.webanddesigners.com/wp-content/uploads/2009/12/illustrator-tutorials/globe.jpg" alt="Create a Rotatable Globe in Adobe Illustrator" width="577" height="200" /></a></p>
<p><p class="wp-caption-text">Create a Rotatable Globe in Adobe Illustrator</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h1>Top Sites for Illustrator tutorials</h1>
<p><b>1. <a href="http://vectortuts.com/" target="_blank" title="VECTORTUTS">VECTORTUTS</a></b><br/><br />
<b>2. <a href="http://vectips.com/" target="_blank" title="Vectips">Vectips</a></b><br/><br />
<b>3. <a href="http://www.blog.spoongraphics.co.uk/" target="_blank" title="Blog.SpoonGraphics">Blog.SpoonGraphics</a></b><br/><br />
<b>4. <a href="http://veerle.duoh.com/blog/archive-summary/category/Tutorials" target="_blank" title="Veerle’s blog">Veerle’s blog</a></b><br/><br />
<b>5. <a href="http://www.gomediazine.com/" target="_blank" title="GoMediaZine">GoMediaZine</a></b><br/><br />
<b>6. <a href="http://www.bittbox.com/" target="_blank" title="BittBox">BittBox</a></b><br/><br />
<b>7. <a href="http://www.ndesign-studio.com/" target="_blank" title="N.Design Studio">N.Design Studio</a></b><br/><br />
<b>8. <a href="http://biorust.com/tutorials/browse/10/added/desc/1/" target="_blank" title="BioRUST">BioRUST</a></b><br/><br />
<b>9. <a href="http://www.vectordiary.com/" target="_blank" title="Vectordiary">Vectordiary</a></b><br/><br />
<b>10. <a href="http://freetransform.net/" target="_blank" title="FreeTransform">FreeTransform</a></b><br/><br />
<b>11. <a href="http://www.illustratorworld.com/" target="_blank" title="IllustratorWorld">IllustratorWorld</a></b><br/><br />
<b>12. <a href="http://www.aivault.com/" target="_blank" title="AiVault">AiVault</a></b><br/><br />
<b>13. <a href="http://aiburn.com/" target="_blank" title="AiBURN">AiBURN</a></b><br/><br />
<b>14. <a href="http://www.illustrationclass.com/" target="_blank" title="IllustrationClass">IllustrationClass</a></b></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanddesigners.com/40-best-illustrator-tutorials-plus-websites-for-illustrator-tutorials/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Introduction to PHP &#8211; Part8</title>
		<link>http://www.webanddesigners.com/introduction-to-php-part8</link>
		<comments>http://www.webanddesigners.com/introduction-to-php-part8#comments</comments>
		<pubDate>Wed, 02 Dec 2009 11:41:23 +0000</pubDate>
		<dc:creator>BRD</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[php function]]></category>
		<category><![CDATA[php functions]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.webanddesigners.com/?p=930</guid>
		<description><![CDATA[Function:
A function is a subprogram that performs a specific task when called by the main program. It is always a good practice to divide a huge program into a number of subprograms until elementary functions are reached. More clearly, a huge program should be divided into number of functions, and a function precisely should do [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>Function:</strong></h2>
<p>A function is a subprogram that performs a specific task when called by the main program. It is always a good practice to divide a huge program into a number of subprograms until elementary functions are reached. More clearly, a huge program should be divided into number of functions, and a function precisely should do one job. Suppose, we have a big program that reads data from user at the beginning, save data to a database and displays the saved data at the end. <span id="more-930"></span>We can divide this program into three subprograms or functions. The first function reads data from user, the second function writes data to the database and finally third function writes data to monitor.</p>
<p>There are number of advantages of implementing a huge program into a number of subprograms. The first advantage is we can reuse the existing code. During a single execution of a program, a function can be called several times from different places and even from another function. The second advantage is it is easy to understand the program logic, debugging and testing is easier.</p>
<p>Functions can be categorised in two broad topics, built-in functions and user defined functions. Built-in functions are the language constructs that comes with PHP. There are hundreds of built-in functions available in PHP for our use. User-defined functions are the functions created by programmers. In this tutorial we will discuss user-defined functions in detail.</p>
<p><strong>Creating function</strong></p>
<p>Let us start with a simple function that calculates sum of two numbers.</p>
<p><strong>Example#1</strong></p>
<pre class="brush: php;">
&lt;html&gt;
&lt;body&gt;
&lt;?php
/*
This function calculates the sum of two numbers
*/
function sum()
{
            //declare and initialize variables
            $x=20;
            $y=30;
            $z=$x+$y;
            //print the result
            echo 'The value of $x is '.$x. ' and value of $y is '. $y .' The result of  $x + $y is '.$z;
}
//Execution of this program starts from here, and calls the function sum, that means code inside the function sum will be executed
sum();
?&gt;
&lt;/body&gt;
</pre>
<p> <br />
<strong>Function with parameter</strong></p>
<p>Though we can call the function sum in example#1 as many times as we want, it produces the same result. Let us modify the above code to achieve better result.</p>
<p><strong>Example#2</strong></p>
<pre class="brush: php;">
&lt;html&gt;
&lt;body&gt;
&lt;?php
/*
This function calculates the sum of two numbers
*/
function sum($x,$y)
{
            //Calculate result
            $result=$x+$y;
            //print the result
            echo $result;
}
//Execution starts from here
$x=20;
$y=30;
sum($x,$y);

//We can call the function using different value
$x=200;
$y=300;
sum($x,$y);
?&gt;
&lt;/body&gt;
</pre>
<p>The code in both examples provides the same functionality but the variables in example#1 are hardcoded inside the function itself and hence, can provide the functionality of adding the hardcoded values. If we have to add other numbers we have to write another function. The code in example#2 solves this problem by passing parameters and provides more functionality. We can add any two numbers any times by just calling the function with parameters. The function <strong>sum</strong> in example#2 takes two parameters. The parameters are enclosed in parenthesis and separated by comma.</p>
<p><strong>Function with parameter and return value</strong></p>
<p>A function can also return value. The return statement is optional. A function can return any type including arrays and objects. After a function returns a value, its execution is passed back to the line from which it was called. Let us modify the code of example#2 to see how a function can return value.</p>
<p><strong>Example#3</strong></p>
<pre class="brush: php;">
&lt;html&gt;
&lt;body&gt;
&lt;?php
/*
This function calculates and returns the sum of two numbers
*/
function sum($x,$y)
{
            //Calculate result
            $result=$x+$y;
            return $result;
}
//Execution starts from here
$x=200;
$y=300;
//calculate and print the result
echo &quot;The sum is : &quot;. sum($x,$y);
?&gt;
&lt;/body&gt;
</pre>
<p>For a complete reference of functions please visit <a href="http://www.php.net/manual/en/language.functions.php">http://www.php.net/manual/en/language.functions.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanddesigners.com/introduction-to-php-part8/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Things to consider before you start your blog</title>
		<link>http://www.webanddesigners.com/things-to-consider-before-you-start-your-blog</link>
		<comments>http://www.webanddesigners.com/things-to-consider-before-you-start-your-blog#comments</comments>
		<pubDate>Tue, 01 Dec 2009 12:35:43 +0000</pubDate>
		<dc:creator>Snigdha</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[promote]]></category>
		<category><![CDATA[promoto website]]></category>

		<guid isPermaLink="false">http://www.webanddesigners.com/?p=914</guid>
		<description><![CDATA[Blog is a tangible demonstration of creative effort. It is in a simple term a platform where an individual can share its feeling, expression, guideline through text, pictures, and videos. We human beings are social animal, we like to share thought make a difference and motivate people to move our way .Blog is one medium [...]]]></description>
			<content:encoded><![CDATA[<p>Blog is a tangible demonstration of creative effort. It is in a simple term a platform where an individual can share its feeling, expression, guideline through text, pictures, and videos. We human beings are social animal, we like to share thought make a difference and motivate people to move our way .Blog is one medium which helps us convey a message in fewer words with a greater impact. </p>
<p>As you are thinking of making a difference, it is the right time you start to blog. There are number of questions that makes you ponder when you think about blog .the first thing that arises is what do I blog about? Where shall I convey my thoughts? Who am I blogging with? Here I some few answers to your queries, following these suggestions you can in no time be a very popular blogger blogging in your own style and way.</p>
<h2>The ultimate  blogging platform, where shall you start</h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><img class="size-full" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/how-to-blog/platform.jpg" alt="Platform" width="577" height="250" /></p>
<p><p class="wp-caption-text">Blogging Platform</p></div>
<p>Before moving ahead into what you want to express. It is necessary you find out where you are going to portray your thoughts .For this different blogging platform are available, some are free whereas some cost you subscription either monthly or yearly. Some are hosted for you whereas some entail you to do it on your own.</p>
<p>The best way to start is through the hosted blogging platform like <a href="http://www.wordpress.com" target="_blank">wordpress.com</a>, <a href="http://www.blogger.com" target="_blank">blogger.com</a>, MSN Spaces, Type Pad. These are at your service free and easy to use and with a minimum of setup.</p>
<p>When you are well to do with the concept of blog and are in a state to create things your way then you can think about creating your own blog in your own style.</p>
<h2>You have the platform, now you are ready to take off the flight of blogging</h2>
<p>Blog is a creative means through which you flow your ideas, so you need to be clear what you want others to know from you as a result you are able to bring in some innovative and impressive ideas which the world appreciates. So you need to have an aim a destination a view that you want to express. The assertive action as a blogger would be selecting a theme. A theme that will help you lead your way.</p>
<p>Theme is rather considered important as theme helps you move in a correct path, and synchronizes the blogging chart . When you know the topic you want to talk about you have a target audience a niche market who can listen to what you have say. Having a theme helps a blogger frequently update the post which increases the charm of blogging making the blog appreciated by people around.</p>
<h2>How will you make your blog stand out in the crowd</h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><img class="size-full" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/how-to-blog/standout.jpg" alt="blog stand out" width="577" height="250" /></p>
<p><p class="wp-caption-text">How will you make your blog stand out in the crowd</p></div>
<p>Photo credit: <a href="http://www.flickr.com/photos/mattpugs/3575238531/">Matthew Pugliese</a></p>
<p>The biggest challenge as a blog author is to bring in people your way and make them listen to what you have to say. For this you need to follow certain guidelines which shall make your blog outstanding .the things that will help you outreach to the target group are: </p>
<p><b>Have a niche market </b></p>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><img class="size-full" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/how-to-blog/niche.jpg" alt="Market niche" width="577" height="250" /></p>
<p><p class="wp-caption-text">Market niche</p></div>
<p>Photo credit: <a href="http://www.flickr.com/photos/33319643@N02/3935714825/">Cristiangil</a></p>
<p>You need to have an understanding of who are you catering to, what is that your reader would like to hear from you .Once you understand you have won half the battle of blogging .</p>
<p><b>Use chivalrous title and gallant content</b> </p>
<p>Title represents your blog , title is the thing that makes the first impression so it is necessary you draw the attention of your reader through the title and grab them into the content. Content needs to be outstanding and worth reading as no one in today&#8217;s busy schedule like to buzz on something that is not worth. So through voracious reading make your content out of this world.</p>
<p><b>See to it that your post is short clear lively and important of all impressive </b></p>
<p>You blog to make an impression .A impressive blog in return turns out to be effective creating hype for the things that you blog about. People don’t have time for bogus stuff. So try and make your blog to the point, do not use jargon, and do not engulf your readers by stuffing them with more than a single idea into each sentence.</p>
<p>These few tips and you can lead the blogging platform as every sector has some rules to follow and regarding blogging there are some copyright issue that you can’t ignore. As ignorance can become a nightmare if you manipulate the copyright stuff. So as you embark into the field of blog you need to consider copyright fact. The simple technological advancement can result in illegal and costly mistakes so as a blogger you need to consider these simple dos and don’t of copyright law.</p>
<h2>Things that copyright permits </h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><img class="size-full" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/how-to-blog/copyright.jpg" alt="Copyright" width="577" height="250" /></p>
<p><p class="wp-caption-text">Copyright</p></div>
<p>If it&#8217;s in public domain you can get hold of it. Public domain refers to documents and materials published by the federal government and those materials that has been produced before 1977 without a copyright notice. So if materials in these places is of any use to you, you can go forward with it.</p>
<p><b>Facts and figures can be utilized </b></p>
<p>Facts and ideas reported on articles or websites are considered fair to use as facts and ideas are universally correct and comes in consent to every individual.</p>
<p><b>Apart from the Facts and figure things that are considered fair</b></p>
<p>According to the book of copyright names, familiar symbols, listings of ingredients or contents, short phrases, titles, slogans and procedures can be used and are considered fair if used with no dire act.</p>
<p><b>Make it yours if you are criticizing </b></p>
<p>Quotation and logo is of your use, But you need to be cautious while using them as Copyright is only consent to the use of quotation, logo for criticism, commentary or news reporting the other aspect that needs to be taken care of is the quote that you are using should involve only a small portion of the work, it in no ways should imitate the “sensitivity” of the material.</p>
<h2>Things that are against the book of copyright </h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><img class="size-full" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/how-to-blog/copyright-x.jpg" alt="Copyright" width="577" height="250" /></p>
<p><p class="wp-caption-text">Copyright</p></div>
<p><b>If you need it you have to ask for it </b></p>
<p>The materials that are kept under copyright issue can only be used with strict permission from the author. So if you need any material take it with the consent of the author and you will be in the legal boundary of copyright.</p>
<p><b>What if there is no copyright symbol?</b></p>
<p>The materials which are not shown under the copyright should not be copied .As all published work automatically gets copyright protection, whether articulated with a notice or not.</p>
<p><b>You can&#8217;t act smart by removing what you have copied</b></p>
<p>If you are thinking on acting smart by copying the material and in case of trouble removing it. Your smartness wont help you from copyright  intrusion, and if the author gets an idea for sure you will be real trouble. </p>
<p><b>Think twice while comparing direct copying with creative commons</b></p>
<p>If the site is licensed creative common than you are in a stare to use its material but you need to be clear that nothing is free in this world you have to credit the author whose material you are using. Creative common license is liberal than copyright but it has certain obligation that you have to fulfill .so be cautious when you are using it as you cant just grab it but you have to credit the author for using it. </p>
<p>With all the assertive action and preemptive measures you are now ready to blog. So run in the track of blogging and bit all the racers through innovation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanddesigners.com/things-to-consider-before-you-start-your-blog/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>30+ Error 404 page designs</title>
		<link>http://www.webanddesigners.com/30-error-404-page-designs</link>
		<comments>http://www.webanddesigners.com/30-error-404-page-designs#comments</comments>
		<pubDate>Mon, 30 Nov 2009 10:54:07 +0000</pubDate>
		<dc:creator>WAD</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[error 404]]></category>
		<category><![CDATA[page design]]></category>

		<guid isPermaLink="false">http://www.webanddesigners.com/?p=905</guid>
		<description><![CDATA[A creative person is one who can make a client stick to his/her service despite the fact the service is not provided in your particular arena. Error 404 the error page is displayed each time someone asks for a page that’s simply not available on your site. To make a visitor stick with you despite [...]]]></description>
			<content:encoded><![CDATA[<p>A creative person is one who can make a client stick to his/her service despite the fact the service is not provided in your particular arena. <strong>Error 404</strong> the error page is displayed each time someone asks for a page that’s simply not available on your site. To make a visitor stick with you despite the service not being available is indeed a great task. </p>
<p><strong>Error 404 </strong>can ease you with this, as a creative and innovative <strong>Error 404</strong> page if thought it can give you a chance to hold back on your visitor. Everyone loves to stay in a humble ambiance so the ease and warmth if shown through an effective <strong>Error 404</strong> page your visitor will stay with you for a long time. Here we have added some proactive ideas to enhance the <strong>Error 404</strong> page making it look salient. </p>
<h2>1. <a href="http://www.openendedadventure.com/404.html">Openendedadventure</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Openendedadventure" href="http://www.openendedadventure.com/404.html"><img class="size-full" title="Openendedadventure" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/openendedadventure.jpg" alt="Openendedadventure" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Openendedadventure</p></div>
<p>&nbsp;</p>
<h2>2. <a href="http://fryewiles.com/templateserrors/404.html">Fry wiles</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Fry wiles" href="http://fryewiles.com/templateserrors/404.html"><img class="size-full" title="Fry wiles" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/frye.jpg" alt="Fry wiles" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Fry wiles</p></div>
<p>&nbsp;</p>
<h2>3. <a href="http://www.thenorthface.com/404">The north face</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="The north face" href="http://www.thenorthface.com/404"><img class="size-full" title="The north face" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/northface.jpg" alt="The north face" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">The north face</p></div>
<p>&nbsp;</p>
<h2>4. <a href="http://www.gog.com/en/error/404">Gog</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Gog" href="http://www.gog.com/en/error/404"><img class="size-full" title="Gog" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/gog.jpg" alt="Gog" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Gog</p></div>
<p>&nbsp;</p>
<h2>5. <a href="http://www.istockphoto.com/4041">Istockphoto</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Istockphoto" href="http://www.istockphoto.com/4041"><img class="size-full" title="Istockphoto" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/istockphoto.jpg" alt="Istockphoto" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Istockphoto</p></div>
<p>&nbsp;</p>
<h2>6. <a href="http://productplanner.com/404">Product planner</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Product planner" href="http://productplanner.com/404"><img class="size-full" title="Product planner" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/product-planner.jpg" alt="Product planner" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Product planner</p></div>
<p>&nbsp;</p>
<h2>7. <a href="http://www.rockettheme.com/404">Rocket theme</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Rocket theme" href="http://www.rockettheme.com/404"><img class="size-full" title="Rocket theme" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/rocket.jpg" alt="Rocket theme" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Rocket theme</p></div>
<p>&nbsp;</p>
<h2>8. <a href="http://www.ferdaze.com/errors/401/">Ferdaze</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Ferdaze" href="http://www.ferdaze.com/errors/401/"><img class="size-full" title="Ferdaze" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/ferdaze.jpg" alt="Ferdaze" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Ferdaze</p></div>
<p>&nbsp;</p>
<h2>9. <a href="http://www.digitalmash.com/extras/404/">Digital Mash</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Digital Mash" href="http://www.digitalmash.com/extras/404/"><img class="size-full" title="Digital Mash" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/digital-mash.jpg" alt="Digital Mash" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Digital Mash</p></div>
<p>&nbsp;</p>
<h2>10. <a href="http://www.southparkstudios.com/404">South park studios</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="South park studios" href="http://www.southparkstudios.com/404"><img class="size-full" title="South park studios" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/south-park.jpg" alt="South park studios" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">South park studios</p></div>
<p>&nbsp;</p>
<h2>11. <a href="http://www.spore.com/404">Spore</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Spore" href="http://www.spore.com/404"><img class="size-full" title="Spore" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/spore.jpg" alt="Spore" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Spore</p></div>
<p>&nbsp;</p>
<h2>12. <a href="http://justcreativedesign.com/404">Just Creative Design</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Just Creative Design" href="http://justcreativedesign.com/404"><img class="size-full" title="Just Creative Design" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/justcreativedesign.jpg" alt="Just Creative Design" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Just Creative Design</p></div>
<p>&nbsp;</p>
<h2>13. <a href="http://www.acromediainc.com/404">Acromediainc</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Acromediainc" href="http://www.acromediainc.com/404"><img class="size-full" title="Acromediainc" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/acromediainc.jpg" alt="Acromediainc" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Acromediainc</p></div>
<p>&nbsp;</p>
<h2>14. <a href="http://www.inverseparadox.net/404">Inverseparadox</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Inverseparadox" href="http://www.inverseparadox.net/404"><img class="size-full" title="Inverseparadox" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/inverseparadox.jpg" alt="Inverseparadox" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Inverseparadox</p></div>
<p>&nbsp;</p>
<h2>15. <a href="http://www.mixx.com/404">Mixx</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Mixx" href="http://www.mixx.com/404"><img class="size-full" title="Mixx" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/mixx.jpg" alt="Mixx" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Mixx</p></div>
<p>&nbsp;</p>
<h2>16. <a href="http://www.woothemes.com/404">Woo Themes</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Woo Themes" href="http://www.woothemes.com/404"><img class="size-full" title="Woo Themes" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/woo.jpg" alt="Woo Themes" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Woo Themes</p></div>
<p>&nbsp;</p>
<h2>17. <a href="http://www.soocial.com/404">Soocial</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Soocial" href="http://www.soocial.com/404"><img class="size-full" title="Soocial" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/soocial.jpg" alt="Soocial" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Soocial</p></div>
<p>&nbsp;</p>
<h2>18. <a href="http://slonky.com/404">Slonky</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Slonky" href="http://slonky.com/404"><img class="size-full" title="Slonky" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/slonky.jpg" alt="Slonky" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Slonky</p></div>
<p>&nbsp;</p>
<h2>19. <a href="http://patterntap.com/404">Patterntap</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Patterntap" href="http://patterntap.com/404"><img class="size-full" title="Patterntap" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/patterntap.jpg" alt="Patterntap" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Patterntap</p></div>
<p>&nbsp;</p>
<h2>20. <a href="http://www.bluedaniel.com/404.shtml">Bluedaniel</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Bluedaniel" href="http://www.bluedaniel.com/404.shtml"><img class="size-full" title="Bluedaniel" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/bluedaniel.jpg" alt="Bluedaniel" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Bluedaniel</p></div>
<p>&nbsp;</p>
<h2>21. <a href="http://retardzone.com/404">Retardzone</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Retardzone" href="http://retardzone.com/404"><img class="size-full" title="Retardzone" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/retardzone.jpg" alt="Retardzone" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Retardzone</p></div>
<p>&nbsp;</p>
<h2>22. <a href="http://www.lightpostcreative.com/404">Lightpostcreative</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Lightpostcreative" href="http://www.lightpostcreative.com/404"><img class="size-full" title="Lightpostcreative" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/lightpostcreative.jpg" alt="Lightpostcreative" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Lightpostcreative</p></div>
<p>&nbsp;</p>
<h2>23. <a href="http://digwp.com/404">DigWP</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="DigWP" href="http://digwp.com/404"><img class="size-full" title="DigWP" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/digwp.jpg" alt="DigWP" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">DigWP</p></div>
<p>&nbsp;</p>
<h2>24. <a href="http://www.wpbeginner.com/404">WP beginner</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="WP beginner" href="http://www.wpbeginner.com/404"><img class="size-full" title="WP beginner" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/wpbeginner.jpg" alt="WP beginner" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">WP beginner</p></div>
<p>&nbsp;</p>
<h2>25. <a href="http://www.tinsanity.net/404.shtml">Tinsanity</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Tinsanity" href="http://www.tinsanity.net/404.shtml"><img class="size-full" title="Tinsanity" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/tinsanity.jpg" alt="Tinsanity" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Tinsanity</p></div>
<p>&nbsp;</p>
<h2>26. <a href="http://agens.no/404">Agens</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Agens" href="http://agens.no/404"><img class="size-full" title="Agens" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/agens.jpg" alt="Agens" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Agens</p></div>
<p>&nbsp;</p>
<h2>27. <a href="http://www.springload.co.nz/404">Springload</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Springload" href="http://www.springload.co.nz/404"><img class="size-full" title="Springload" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/springload.jpg" alt="Springload" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Springload</p></div>
<p>&nbsp;</p>
<h2>28. <a href="http://css-tricks.com/4040">CSS tricks</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="CSS tricks" href="http://css-tricks.com/4040"><img class="size-full" title="CSS tricks" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/css.jpg" alt="CSS tricks" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">CSS tricks</p></div>
<p>&nbsp;</p>
<h2>29. <a href="http://www.twinpx.ru/404">Twinpx</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Twinpx" href="http://www.twinpx.ru/404"><img class="size-full" title="Twinpx" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/twinpx.jpg" alt="Twinpx" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Twinpx</p></div>
<p>&nbsp;</p>
<h2>30. <a href="http://www.lookitsme.co.uk/404_me">Lookitsme</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Lookitsme" href="http://www.lookitsme.co.uk/404_me"><img class="size-full" title="Lookitsme" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/lookitsme.jpg" alt="Lookitsme" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Lookitsme</p></div>
<p>&nbsp;</p>
<h2>31. <a href="http://www.youcastr.com/404">Youcastr</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Youcastr" href="http://www.youcastr.com/404"><img class="size-full" title="Youcastr" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/you.jpg" alt="Youcastr" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Youcastr</p></div>
<p>&nbsp;</p>
<h2>32. <a href="http://chrisjennings.com/404">Chrisjennings</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Chrisjennings" href="http://chrisjennings.com/404"><img class="size-full" title="Chrisjennings" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/chrisjennings.jpg" alt="Chrisjennings" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Chrisjennings</p></div>
<p>&nbsp;</p>
<h2>33. <a href="http://www.studio7designs.com/404/">Studio7designs</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Studio7designs" href="http://www.studio7designs.com/404/"><img class="size-full" title="Studio7designs" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/error-404/studio7designs.jpg" alt="Studio7designs" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Studio7designs</p></div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanddesigners.com/30-error-404-page-designs/feed</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>How to promote your website</title>
		<link>http://www.webanddesigners.com/how-to-promote-your-website</link>
		<comments>http://www.webanddesigners.com/how-to-promote-your-website#comments</comments>
		<pubDate>Thu, 26 Nov 2009 23:28:39 +0000</pubDate>
		<dc:creator>Snigdha</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[promote]]></category>
		<category><![CDATA[promoto website]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.webanddesigners.com/?p=891</guid>
		<description><![CDATA[Proficiency in marketing is one of the most important skills that an individual should inherit .Precise promotion, is that art of marketing that will allow your webpage to become profitable in no time. In order to enhance into promotion and target the niche market, as a webpage owner you need the nitty-gritty of webpage promotion.
Considering [...]]]></description>
			<content:encoded><![CDATA[<p>Proficiency in marketing is one of the most important skills that an individual should inherit .Precise promotion, is that art of marketing that will allow your webpage to become profitable in no time. In order to enhance into promotion and target the niche market, as a webpage owner you need the nitty-gritty of webpage promotion.</p>
<p>Considering these feasible simple steps of marketing your webpage will hit the target making your page popular among the target audience.  <span id="more-891"></span></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h2>1. AdWords a way to make things work your way</h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><img class="size-full" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/promote-your-site/google-adwords.jpg" alt="First thing first say yes to AdWords" width="577" height="200" /></p>
<p><p class="wp-caption-text">First thing first say yes to AdWords</p></div>
<p>AdWords is in all prospects the most competent method to create traffic for your website. In order to get the traffic flow in your website it is highly recommended advertising on Google AdWords and on other search engines on a pay-per-click basis. Every time a person clicks on your advert and goes to your site you pay.</p>
<h2>2. Maximum optimization of search engine through plenty of clues as to what your webpage is about</h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><img class="size-full" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/promote-your-site/search-engine.jpg" alt="Maximum optimization of search engine" width="577" height="200" /></p>
<p><p class="wp-caption-text">Maximum optimization of search engine</p></div><br />
Photo credit: <a href="http://www.flickr.com/photos/steer_ecommerce_online_marketing/4032935657/">Steer Online Marketing</a></p>
<p> The search engines send out “spiders” to look at websites and list their content so that when someone searches for keywords, they can point up to the sites which contain them. So in order to make maximum use of search engine your page needs to have good keyword list. Once you get hold of the list, you can make use of those words for search engine optimization in everything from your content to your Meta tags. </p>
<h2>3. Prove your existence through participation in online forums blogs and social media</h2>
<p><div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><img class="size-full" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/promote-your-site/blog.jpg" alt="Prove your existence through participation" width="577" height="200" /></p>
<p><p class="wp-caption-text">Prove your existence through participation</p></div>
<p>Forum and blogs craze is in hype these days. So in order to reach to the niche market following the popular forum which caters to your target group is the right thing to do. So make a study of all popular forums that in ways relate to your site and make sure that these blogs allow a simple link to your site .Blogs and forum look for valuable posts and in return provides link to your site, so at the end of the day it is a win-win situation for both the forum and your site.</p>
<p>The rampage of booming   social media can&#8217;t be kept aside when we are talking about promotion. As this is one platform where varied mass can be  cater in one shot .This kind of social media site helps create interaction between people which helps promote your site by directing direct traffic, producing links to your site, and creating awareness. </p>
<h2>4. Have confidence in your site keep talking about it</h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><img class="size-full" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/promote-your-site/refferal.jpg" alt="Have confidence in your site" width="577" height="200" /></p>
<p><p class="wp-caption-text">Have confidence in your site</p></div>
<p>Word of Mouth always leads the promotion chart, so never hesitate in talking about your site .As this is one mechanism that makes people come to your site and if you are certain that your site is different than other then this will drag people to revisit your site. Through family friends and colleague soon enough you will see a drastic increase in traffic.</p>
<p>Providing something interesting is a huge challenge for which you need to have great interesting and fascinating content .So a great content is a big way in which word of mouth marketing works.</p>
<h2>5. Benefit from reciprocal link</h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><img class="size-full" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/promote-your-site/chain.jpg" alt="Benefit from reciprocal link" width="577" height="200" /></p>
<p><p class="wp-caption-text">Benefit from reciprocal link</p></div>
<p>Photo credit: <a href="http://www.flickr.com/photos/krish4u/511674034/">krish.Tipirneni.</a></p>
<p>Promotion is an art of convincing people, convincing an individual and keeping the person in hand requires a lot of patience. Things get easier when two website having general niche work together and you request a reciprocal link to your site .For better result  you should find in site that cater to the same   mass as you do. Don’t get over ambitious and search for big banner sites with heavy traffic flow rather search for site that has similar amount of traffic as your own site.</p>
<p>This will ease you financially and you will see effective result with the flow of traffic increasing.  </p>
<p>So given some time and believe in these effective technique your site will reach height with the desired traffic flow in no time.</p>
<p>Photo credit thumbnail: <a href="http://www.flickr.com/photos/31796655@N07/2974942783/">kevinzhengli</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanddesigners.com/how-to-promote-your-website/feed</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>20 Photoshop photo effect tutorials</title>
		<link>http://www.webanddesigners.com/20-photoshop-photo-effect-tutorials</link>
		<comments>http://www.webanddesigners.com/20-photoshop-photo-effect-tutorials#comments</comments>
		<pubDate>Wed, 25 Nov 2009 07:36:05 +0000</pubDate>
		<dc:creator>WAD</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[photo effects]]></category>

		<guid isPermaLink="false">http://www.webanddesigners.com/?p=886</guid>
		<description><![CDATA[Effective attribute to a image adds value to what a person perceive. Photoshop is one medium that adds beauty to the picture through its various effects. These effect add power to the photo making a normal photo look like a work of art. If you are an amateur Photographer, the effects of Photoshop can be [...]]]></description>
			<content:encoded><![CDATA[<p>Effective attribute to a image adds value to what a person perceive. Photoshop is one medium that adds beauty to the picture through its various effects. These effect add power to the photo making a normal photo look like a work of art. If you are an amateur Photographer, the effects of Photoshop can be a boon to your photography as through the art of Photoshop your photo can be portrayed into a high end professional photo. <span id="more-886"></span></p>
<p>So if you are a person who has passion towards photos and have the desire to make your photo of some worth. Here we have posted some effects of Photoshop which can help your photos stand ahead in the crowd .</p>
<h2>1. <a href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/create-a-funky-perspective-of-a-model-riding-digital-volume/">Create a Funky Perspective of a Model Riding Digital Volume</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Create a Funky Perspective of a Model Riding Digital Volume" href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/create-a-funky-perspective-of-a-model-riding-digital-volume/"><img class="size-full" title="Create a Funky Perspective of a Model Riding Digital Volume" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/funky.jpg" alt="Create a Funky Perspective of a Model Riding Digital Volume" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Create a Funky Perspective of a Model Riding Digital Volume</p></div>
<p>&nbsp;</p>
<h2>2. <a href="http://psdlearning.com/2009/05/dance-photo-manipulation-part-2/">Dance Photo Manipulation</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Dance Photo Manipulation" href="http://psdlearning.com/2009/05/dance-photo-manipulation-part-2/"><img class="size-full" title="Dance Photo Manipulation" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/dance.jpg" alt="Dance Photo Manipulation" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Dance Photo Manipulation</p></div>
<p>&nbsp;</p>
<h2>3. <a href="http://10steps.sg/photoshop/creating-an-abstract-watercolor-wallpaper/">Creating an Abstract Watercolor Wallpaper</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Creating an Abstract Watercolor Wallpaper" href="http://10steps.sg/photoshop/creating-an-abstract-watercolor-wallpaper/"><img class="size-full" title="Creating an Abstract Watercolor Wallpaper" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/lord.jpg" alt="Creating an Abstract Watercolor Wallpaper" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Creating an Abstract Watercolor Wallpaper</p></div>
<p>&nbsp;</p>
<h2>4. <a href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/how-to-create-a-fantasy-landscape-photo-manipulation/">How to Create a Fantasy Landscape Photo Manipulation</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="How to Create a Fantasy Landscape Photo Manipulation" href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/how-to-create-a-fantasy-landscape-photo-manipulation/"><img class="size-full" title="How to Create a Fantasy Landscape Photo Manipulation" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/landscape.jpg" alt="How to Create a Fantasy Landscape Photo Manipulation" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">How to Create a Fantasy Landscape Photo Manipulation</p></div>
<p>&nbsp;</p>
<h2>5. <a href="http://www.tutorial9.net/photoshop/creative-photoshop-animal-king-photo-manipulation-tutorial/">Creative Photoshop Animal King Photo Manipulation Tutorial</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Creative Photoshop Animal King Photo Manipulation Tutorial" href="http://www.tutorial9.net/photoshop/creative-photoshop-animal-king-photo-manipulation-tutorial/"><img class="size-full" title="Creative Photoshop Animal King Photo Manipulation Tutorial" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/lion.jpg" alt="Creative Photoshop Animal King Photo Manipulation Tutorial" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Creative Photoshop Animal King Photo Manipulation Tutorial</p></div>
<p>&nbsp;</p>
<h2>6. <a href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/how-to-turn-humdrum-photos-into-cinematic-portraits/">How to Turn Humdrum Photos into Cinematic Portraits</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="How to Turn Humdrum Photos into Cinematic Portraits" href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/how-to-turn-humdrum-photos-into-cinematic-portraits/"><img class="size-full" title="How to Turn Humdrum Photos into Cinematic Portraits" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/humdrum.jpg" alt="How to Turn Humdrum Photos into Cinematic Portraits" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">How to Turn Humdrum Photos into Cinematic Portraits</p></div>
<p>&nbsp;</p>
<h2>7. <a href="http://www.computerarts.co.uk/tutorials/2d__and__photoshop/expressive_lighting_effects">Expressive lighting effects</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Expressive lighting effects" href="http://www.computerarts.co.uk/tutorials/2d__and__photoshop/expressive_lighting_effects"><img class="size-full" title="Expressive lighting effects" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/lightening.jpg" alt="Expressive lighting effects" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Expressive lighting effects</p></div>
<p>&nbsp;</p>
<h2>8. <a href="http://psd.tutsplus.com/designing-tutorials/the-making-of-mystic/">The Making of Mystic</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="The Making of Mystic" href="http://psd.tutsplus.com/designing-tutorials/the-making-of-mystic/"><img class="size-full" title="The Making of Mystic" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/mystic.jpg" alt="The Making of Mystic" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">The Making of Mystic</p></div>
<p>&nbsp;</p>
<h2>9. <a href="http://photoshopfrenzy.com/?p=94">Dramatic Gritty Effect</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Dramatic Gritty Effect" href="http://photoshopfrenzy.com/?p=94"><img class="size-full" title="Dramatic Gritty Effect" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/old.jpg" alt="Dramatic Gritty Effect" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Dramatic Gritty Effect</p></div>
<p>&nbsp;</p>
<h2>10. <a href="http://psd.tutsplus.com/tutorials-effects/create-a-powerful-mental-wave-explosion-effect/">Create a Powerful Mental Wave Explosion Effect</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Create a Powerful Mental Wave Explosion Effect" href="http://psd.tutsplus.com/tutorials-effects/create-a-powerful-mental-wave-explosion-effect/"><img class="size-full" title="Create a Powerful Mental Wave Explosion Effect" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/explosion.jpg" alt="Create a Powerful Mental Wave Explosion Effect" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Create a Powerful Mental Wave Explosion Effect</p></div>
<p>&nbsp;</p>
<h2>11. <a href="http://abduzeedo.com/fantastic-disintegration-effect-inspired-watchmen-photoshop">Fantastic Disintegration Effect inspired by Watchmen in Photoshop</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Fantastic Disintegration Effect inspired by Watchmen in Photoshop" href="http://abduzeedo.com/fantastic-disintegration-effect-inspired-watchmen-photoshop"><img class="size-full" title="Fantastic Disintegration Effect inspired by Watchmen in Photoshop" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/abu.jpg" alt="Fantastic Disintegration Effect inspired by Watchmen in Photoshop" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Fantastic Disintegration Effect inspired by Watchmen in Photoshop</p></div>
<p>&nbsp;</p>
<h2>12. <a href="http://photoshoptutorials.ws/photoshop-tutorials/photo-effects/selective-sepia.html">Selective Sepia</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Selective Sepia" href="http://photoshoptutorials.ws/photoshop-tutorials/photo-effects/selective-sepia.html"><img class="size-full" title="Selective Sepia" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/sepia.jpg" alt="Selective Sepia" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Selective Sepia</p></div>
<p>&nbsp;</p>
<h2>13. <a href="http://www.computerarts.co.uk/tutorials/premium_content/2d__and__photoshop/add_another_dimension">Add Another Dimension</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Add Another Dimension" href="http://www.computerarts.co.uk/tutorials/premium_content/2d__and__photoshop/add_another_dimension"><img class="size-full" title="Add Another Dimension" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/dimension.jpg" alt="Add Another Dimension" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Add Another Dimension</p></div>
<p>&nbsp;</p>
<h2>14. <a href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/how-to-create-a-chilling-photo-manipulation-in-photoshop/">How to Create a Chilling Photo Manipulation in Photoshop</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="How to Create a Chilling Photo Manipulation in Photoshop" href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/how-to-create-a-chilling-photo-manipulation-in-photoshop/"><img class="size-full" title="How to Create a Chilling Photo Manipulation in Photoshop" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/chilling.jpg" alt="How to Create a Chilling Photo Manipulation in Photoshop" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">How to Create a Chilling Photo Manipulation in Photoshop</p></div>
<p>&nbsp;</p>
<h2>15. <a href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/using-photoshop-and-your-brain-to-produce-diorama-illusions/">Using Photoshop and Your Brain to Produce Diorama Illusions</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Using Photoshop and Your Brain to Produce Diorama Illusions" href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/using-photoshop-and-your-brain-to-produce-diorama-illusions/"><img class="size-full" title="Using Photoshop and Your Brain to Produce Diorama Illusions" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/illusions.jpg" alt="Using Photoshop and Your Brain to Produce Diorama Illusions" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Using Photoshop and Your Brain to Produce Diorama Illusions</p></div>
<p>&nbsp;</p>
<h2>16. <a href="http://www.photoshopcafe.com/tutorials/Spotlight/spotlight.htm">Realistic Spotlight Effect in Photoshop</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Realistic Spotlight Effect in Photoshop" href="http://www.photoshopcafe.com/tutorials/Spotlight/spotlight.htm"><img class="size-full" title="Realistic Spotlight Effect in Photoshop" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/car.jpg" alt="Realistic Spotlight Effect in Photoshop" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Realistic Spotlight Effect in Photoshop</p></div>
<p>&nbsp;</p>
<h2>17. <a href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/manipulate-smoke-to-create-hyper-real-images/">Manipulate Smoke to Create Hyper-Real Images</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Manipulate Smoke to Create Hyper-Real Images" href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/manipulate-smoke-to-create-hyper-real-images/"><img class="size-full" title="Manipulate Smoke to Create Hyper-Real Images" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/smoke.jpg" alt="Manipulate Smoke to Create Hyper-Real Images" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Manipulate Smoke to Create Hyper-Real Images</p></div>
<p>&nbsp;</p>
<h2>18. <a href="http://photoshop8x.com/view_tut.php?id=5">Beautiful Lady Effect </a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Beautiful Lady Effect " href="http://photoshop8x.com/view_tut.php?id=5"><img class="size-full" title="Beautiful Lady Effect " src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/lady.jpg" alt="Beautiful Lady Effect " width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Beautiful Lady Effect </p></div>
<p>&nbsp;</p>
<h2>19. <a href="http://www.photoshopessentials.com/photo-effects/water-reflection/">Photoshop Water Reflection &#8211; Add A Realistic Water Reflection</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Photoshop Water Reflection - Add A Realistic Water Reflection" href="http://www.photoshopessentials.com/photo-effects/water-reflection/"><img class="size-full" title="Photoshop Water Reflection - Add A Realistic Water Reflection" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/reflection.jpg" alt="Photoshop Water Reflection - Add A Realistic Water Reflection" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Photoshop Water Reflection - Add A Realistic Water Reflection</p></div>
<p>&nbsp;</p>
<h2>20. <a href="http://photoshopessentials.com/photo-effects/rain/">Photoshop Rain Effect &#8211; Adding Rain To A Photo</a></h2>
<div class="wp-caption aligncenter" style="width: 587px"></p>
<p style="text-align: center;"><a title="Photoshop Rain Effect - Adding Rain To A Photo" href="http://photoshopessentials.com/photo-effects/rain/"><img class="size-full" title="Photoshop Rain Effect - Adding Rain To A Photo" src="http://www.webanddesigners.com/wp-content/uploads/2009/11/photoshop-photo-effects/rain.jpg" alt="Photoshop Rain Effect - Adding Rain To A Photo" width="577" height="250" /></a></p>
<p><p class="wp-caption-text">Photoshop Rain Effect - Adding Rain To A Photo</p></div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanddesigners.com/20-photoshop-photo-effect-tutorials/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Introduction to PHP &#8211; Part7</title>
		<link>http://www.webanddesigners.com/introduction-to-php-part-7</link>
		<comments>http://www.webanddesigners.com/introduction-to-php-part-7#comments</comments>
		<pubDate>Mon, 23 Nov 2009 13:02:56 +0000</pubDate>
		<dc:creator>BRD</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[beginners]]></category>
		<category><![CDATA[PHP Array]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.webanddesigners.com/?p=862</guid>
		<description><![CDATA[Array:
Array is a systematic collection of data of similar data types that can be accessed by numeric index. Array is one of the most important and oldest data structures that are used to implement other data structures like strings, maps, vector etc. An array in PHP is in fact an ordered map type that associates [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>Array:</strong></h2>
<p>Array is a systematic collection of data of similar data types that can be accessed by numeric index. Array is one of the most important and oldest data structures that are used to implement other data structures like strings, maps, vector etc. An array in PHP is in fact an ordered map type that associates values to keys. We suggest readers to not get confused with map type here, simply understand PHP array as a data type that can be accessed using keys. <span id="more-862"></span></p>
<p>In a situation where it is almost impossible to create a number of variables, a single array can solve the problem. For example, we need to store marks of 100 students having Roll no 1 to 100. Instead of creating 100 variables student1, student2, &#8230;&#8230;., student100 we can create an array of size 100. After we created array, the Roll no can be used as index. More clearly, mark of student with Roll no 1 can be a stored and accessed using index 1, i.e. student[1].</p>
<p><strong>Creating Array</strong></p>
<p><strong>Syntax</strong></p>
<p>array() is used to create an array. We can specify any number of parameters of key =&gt; value pairs separated by comma.</p>
<pre>array(  <em>key1</em> =&gt;  <em>value1</em>, key2 =&gt;value 2,..............keyn =&gt; valuen)</pre>
<p>Key can only be number or string, but value can be any type, it can be an array, map, vector, object or any other PHP supported type.</p>
<p><strong>Example#1</strong></p>
<pre class="brush: php;">
&lt;html&gt;
&lt;body&gt;
&lt;?php
/*
Output: 59 69 90 84 73 79 33 66 93 54
Average marks: 70
Marks of Roll No 5: 73
Program description: This program creates an array called student with 10 elements
and stores marks obtained by each student. The code inside the foreach loop print the marks obtained
by each student and adds to the totalMarks. After foreach loop the Average marks is calculated.
*/
$student  = array(1 =&gt; 59, 2 =&gt; 69, 3 =&gt; 90, 4 =&gt; 84, 5 =&gt; 73, 6 =&gt; 79, 7 =&gt; 33, 8 =&gt; 66, 9 =&gt; 93, 10 =&gt; 54);
/*
This array can also be defined as
$student = array(59, 69, 90, 84, 73, 79, 33, 66, 93, 54);
If you want to start index from a specific number for example say 100, you can write like
$student = array(100 =&gt; 59, 69, 90, 84, 73, 79, 33, 66, 93, 54);
*/
$totalMarks=0;
foreach($student as $marks)
{
         echo $marks.&quot; &quot;;
         $totalMarks+=$marks;
}
echo &quot;&lt;br/&gt; Average marks: &quot;. $totalMarks/10;

/*
It is also possible to access the array element using the numeric index,
for example to print the marks of student with rollno 5 can be printed as
*/
echo &quot;&lt;br/&gt; Marks of Roll No 5 : &quot;. $student[5];
?&gt;
&lt;/body&gt;
</pre>
<p>The array we used in example has a numeric index or key. We can also implement array with string key, this array is known as associative array very similar to map data structure.</p>
<p><strong>Example#2</strong></p>
<pre class="brush: php;">
&lt;html&gt;
&lt;body&gt;
&lt;?php
/*
Output: 59 69 90 84 73 79 33 66 93 54
Average marks: 70
Marks of Sam: 69
Program description: This program creates an array called student with 10 elements
and stores marks obtained by each student. The code inside the foreach loop print the marks obtained
by each student and adds to the totalMarks. After foreach loop the Average marks is calculated.
*/

$student  = array(&quot;Hary&quot; =&gt; 59, &quot;Sam&quot; =&gt; 69, &quot;Joe&quot; =&gt; 90, &quot;Kevin&quot; =&gt; 84, &quot;Kelly&quot; =&gt; 73, &quot;Steve&quot; =&gt; 79,
 &quot;Craig&quot; =&gt; 33, &quot;Jodi&quot; =&gt; 66, &quot;John&quot;=&gt; 93, &quot;Rose&quot; =&gt; 54);
$totalMarks=0;
foreach($student as $marks)
{
            echo $marks.&quot; &quot;;
            $totalMarks+=$marks;
}
echo &quot;&lt;br/&gt; Average marks: &quot;. $totalMarks/10;

/*
It is also possible to access the array element using the string key,
for example to print the marks of &quot;Sam&quot; can be printed as
*/
echo &quot;&lt;br/&gt; Marks of Sam : &quot;. $student[&quot;Sam&quot;];
?&gt;
&lt;/body&gt;
</pre>
<p><strong>Modifying array</strong></p>
<p>To modify an existing array, we can assign values explicitly to the array. Remember that, if the specified array does not exist yet, a new array will be created. The following example shows how to modify an existing array.</p>
<p><strong>Example#3</strong></p>
<pre class="brush: php;">
&lt;html&gt;
&lt;body&gt;
&lt;?php
/*
This program creates an array called countries with two elements
*/
$countries  = array(1 =&gt; &quot;Australia&quot;, 2 =&gt; &quot;New Zealand&quot;);
// To add a country called Japan, we need to assigh it explicitly as
$countries[3] = &quot;Japan&quot;;
// We can aslo add a element without specifying the key, in this situation
// the key of new element will he the key of last element + 1
$countries[] = &quot;United Kingdom&quot;;
 
//To simply print an array we can use the function print_r($array) as follows
// Output: Array ( [1] =&gt; Australia [2] =&gt; New Zealand [3] =&gt; Japan [4] =&gt; United Kingdom )
print_r($countries);

/* Deleting element from array:
Output:  Array ( [1] =&gt; Australia [3] =&gt; Japan [4] =&gt; United Kingdom )
Remember that the key of Japan and United Kingdom does not get changed
*/
unset($countries[2]);
print_r($countries);

// This will delete the whole array
unset($countries);
//If we try to print the array, a message like the following will be displayed
//Undefined variable: countries in C:\wamp\www\WebTest\index.php on line 29
print_r($countries);
?&gt;
&lt;/body&gt;
</pre>
<p>For a complete reference of array please visit <a href="http://www.php.net/manual/en/language.types.array.php">http://www.php.net/manual/en/language.types.array.php</a> and for complete reference on array functions please visit <a href="http://www.w3schools.com/PHP/php_ref_array.asp">http://www.w3schools.com/PHP/php_ref_array.asp</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanddesigners.com/introduction-to-php-part-7/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
