Crud Operation in Java MySQL In Netbeans Using Swing

This CODE is going to help you learning how to do basic database operations (CRUD - Create, Retrieve, Update and Delete) using JDBC (Java Database Connectivity) API. These CRUD operations are equivalent to the INSERT, SELECT, UPDATE and DELETE statements in SQL language. Although the target database system is MySQL, but the same technique can be applied for other database systems as well because

Snake Game using Javascript

In this tutorial, I am going to teach on how to create a snake game in javascript. Just download the source code and follow the instructions below. DIRECTIONS HTML Code snake[i-1].xx) { context.drawImage(snakeTailImage, (snake[i].xx * 32), (snake[i].yy * 32) ); } //following right else if(snake[i].xx snake[i-1].yy) { drawRotatedImage(snakeTailImage,(snake[i].xx * 32), (snake[i].yy * 32), 90); } /

Snow Effect Using Javascript

This is a simple program that will teach on how to create a snow effect using javascript. You can use this in your projects or systems. Just download the source code below. Instructions HTML Code Snow Demo Javascript Code /** * X-Team Snow * @author Andrew Valums * * Copyright (c) 2009 X-Team, http://x-team.com */ (function(){function k(a,b,c){if(a.addEventListener)a.addEventListener(b,c,false)

Progress Meter Using CSS and Javascript

In this tutorial, I am going to teach you on to make a beautiful progress meter using CSS and Javascript. Just download the source code below and follow the instructions. Instructions Creating our index.php page In this page we will be creating our html code. don't forget to place the css link on the head tag of the page and place the javascript link below the body tag. Progress Meter Task 1 Task