Tuesday, August 23, 2011

Amazing Typography and Text Effect Tutorials of GIMP

GIMP stands for GNU Image Manipulation Program and this is an open source and free application for photo editing same like Photoshop. This tool also can be use for website designing and print media designing. We have already published Gimp tutorials collection before this which is “20+ GIMP Tutorials for Designers”.

Friday, August 19, 2011

Awesome Collection of Screen Printing Tutorials

Screen printing is a difficult task and this is a vast topic and there is a lot of learning required to become an expert. Screen printing is not an easy task for beginners so today we have find some good tutorials of screen printing for those who want to learn and become an expert.

Monday, August 15, 2011

Image of the Day PHP Tutorial

In this tutorial shows you how to display image of the day. You can adapt this script to display quote of the day, knowledge of the day or something else you want. You don't have to change image everyday just change images once a week. 

















 

What to do?


1. Find what today is? using date function and keep answer in variable name "$today".
2. Compare $today with name of the day.
3. Display "Today is " ... " and display image of the day.
4. test it. Try to change your machine date and see the result!


$today=date(l); // Find what today is? using date function


{code type=codetype}

// If today is Monday displays message "Today is Monday" and displays image1.gif
if($today==Monday){// Compare $today with name of the day.
echo "Today is Monday";
echo "<BR>"; // Line break
echo "<img src='images/image1.gif'>"; // images keep in forder "images"
}


{/code}

-----------------------------------------------------------------------------------------------------------------


If You want to show 1 month 31 images replace with this code

{code type=codetype}
$today=date(d); // display date "01", "02", "03"..."15", "16" ....
if($today==01){ .......

elseif($today==15){ .......


until $today==31


{/code}

|---|--------------------- code --------------------|---|


{code type=codetype}

<?
$today=date(l);// Find what today is? using date function


if($today==Monday){
echo "Today is Monday";
echo "<BR>";
echo "<img src='images/image1.gif'>";
}

elseif($today==Tuesday){
echo "Today is Tuesday";
echo "<BR>";
echo "<img src='images/image2.gif'>";
}

elseif($today==Wednesday){
echo "Today is Wednesday";
echo "<BR>";
echo "<img src='images/image3.gif'>";
}

elseif($today==Thursday){
echo "Today is Thursday";
echo "<BR>";
echo "<img src='images/image4.gif'>";
}

elseif($today==Friday){
echo "Today is Friday";
echo "<BR>";
echo "<img src='images/image5.gif'>";
}

elseif($today==Saturday){
echo "Today is Saturday";
echo "<BR>";
echo "<img src='images/image6.gif'>";
}

elseif($today==Sunday){
echo "Today is Sunday";
echo "<BR>";
echo "<img src='images/image7.gif'>";
}

?>


{/code}

Saturday, August 13, 2011

How to Make Lamp with Special Effects in Photoshop

Today we will let you know that How to make lamp with special effects in Photoshop. This tutorial is based on 2 major techniques of Photoshop "lighting" and "blending". You will learn different ways to use of these "lighting" and "blending" methods. This is simple tutorial and you don’t have need any extra skills required for this. So let’s start tutorial and hope you will enjoy making this.

Monday, August 8, 2011

How to Create Wallpapers in Photoshop

These are professional tutorials of Photoshop on topic of "How to Create Wallpapers in Photoshop". There are a lot of tutorials on this topic but we have collected some tutorials which can be best for you. These tutorials will be helpful to find best ways to experiment and also you will try new things in Photoshop. If you are beginner in Photoshop then these tutorials will be helpful to learn new tricks and techniques for you. So these tutorials are both for beginners and professionals. Enjoy!

Friday, August 5, 2011

Amazing Collection of CSS Based Professional Form Design Tutorials

Today we have collected number of contact form tutorials for web developers and web designers. You will get very proficient experience regarding contact forms which have been building up after using CSS technology and you will also get more knowledge about CSS skills from this post.

Monday, August 1, 2011

Best Tutorials, Tips, Resources and Examples of jQuery UI

jQuery is very popular now a days to make front end stylish of websites and also using in backend layer. Its provide effects, interactions, widgets and many more thing to make attractive website or internet application. This is an enhanced version of most popular front end language javascript. Today we have collected very useful selection of tutorials and tips of jQuery. You will get ultimate help and solutions from this.