CSS Generator Tools
Here some useful web design tools for make your live easier :) .
CSS Button Generator - button.csscook.com

CSS Layout Generator - csslayoutgenerator.com

CSS Rounded Corner Generator - cssround.com

CSS Pattern Generator - www.patternify.com

CSS Text to Path generator - csswarp.eleqtriq.com

CSS Sprites Generator - csssprites.com
![]()
hear music online



basic jquery tutorial
What is jquery ? jquery is one of most popular javascript library to make your live easier
, you can make animation, ajax, manipulate html with only few line code. You can download jquery file from www.jquery.com . Here same sample jquery for basic usage
.
Hello World
//make sure you use ready state to make sure all element is loaded before execute the script inside
$(document).ready(function(){
alert("Hello World");
});
Full code :
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
alert("Hello World");
});
</script>
</body>
</html>
10 awesome Sunset wallpapers
Free Photo Editor Online

If you want to edit your photo , here i found a free online tools to edit your photos become nicer
.
You can try Pixlr . Pixlr provide some usefull tools to edit your photos :
FLOWER DEFENSE
KIZ – FLOWER DEFENSE is a really nice game to play. If you like tower defense games, so you must try this game. In this game, we must build defensive unit to protect our flower from Beetles. If you want to save your game, just login using your Facebook account, so every time you back to game page, you do not need to play from beginning
the various uses of “group by” in mysql
I will explain some useful tips using "group by" query in mysql.
First create new table for testing in your database ...
CREATE TABLE `movie` ( `id` tinyint(4) NOT NULL auto_increment, `title` varchar(100) default NULL, `genre` varchar(100) default NULL, `price` double(10,2) default NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM; INSERT INTO `movie` (`id`, `title`, `genre`, `price`) VALUES (1, 'Spiderman', 'action', 5.00); INSERT INTO `movie` (`id`, `title`, `genre`, `price`) VALUES (2, 'Hulk', 'action', 4.00); INSERT INTO `movie` (`id`, `title`, `genre`, `price`) VALUES (3, 'Romance in the rain', 'romance', 4.00); INSERT INTO `movie` (`id`, `title`, `genre`, `price`) VALUES (4, 'Hello World', 'comedy', 10.00); INSERT INTO `movie` (`id`, `title`, `genre`, `price`) VALUES (5, 'Bang Bang', 'comedy', 6.00);




















