Count the Number of Checkbox with Check Value Using Javascript

Submitted by argie on
This tutorial will teach you on how to count the number of checkbox with checked value using Javascript. This is useful for thus programmer who is creating an online voting; by using this tutorial you can put a filter that allows only specific number of candidates to be vote in every position. To start this tutorial follow the steps bellow.

Creating Our Javascript

This step includes the creation of our Javascript that count the number of checkbox with check value.

Count Total Failed Login by the User in PHP and MySQL

Submitted by ronard on
This script will teach you especially for novice in PHP Programming. This script will count the total failed login by the user if the username inputted in the textbox is exists in table users. Then it will add to the table failed login. How to install this script? Unzip the downloaded file. And copy the "tutorials" directory from "db" directory to "mysql/data/". Then copy also the "check_failed

Object Oriented C Programming In PHP With advance query and trapping sql injection

Submitted by michael.galanza on
1. Create Database name OOP 2. Create table about your project 3. include or require the MySqlDb.php to any of your project query 3. Create $Db = new MySqlDb('localhost', 'root', '', 'OOP'); depending on your localhost username and password 4. your automatic query are in delete,save,edit and update are $Db->where('tableid', table subject); $Db->delete('database table'); 5. database example in

Shutdown Manager

Submitted by donbermoy on
We always used our computer system program to shutdwon, log-off, and restart our pc. But here in vb.net we can also do that. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.

Number Only in a TextBox

Submitted by donbermoy on
There are many fields in an information that we must only type a number in a textfield or in a textbox such as phone number, zip code, or any fields that must have a number type only. So, now we will begin this filtering a textbox into number only. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.

Top Five Best Programming Languages for First-Time Learners

Submitted by blinkremz1 on
A programming site has listed its top five best programming languages for first-time learners following its recently conducted poll survey. According to Lifehacker, the following are the top five best programming languages for the firs-timers whose gearing up to learn on how to code: Python C/C++ Java JavaScript Ruby Based on the survey, Python leads as the most popular particularly for first

Import Database Tables Using PHP/MySQL

Submitted by argie on
This tutorial will teach you on how create a script that restore or import database tables using PHP. The feature of this tutorial is it allows the user to restore or imports database backup without using the phpmyadmin panel. To understand more about this tutorial follow the steps bellow

Creating Our Database

First we are going to create our database which stores our data. To create a database: 1. Open phpmyadmin 2. Then create database and name it as "tutorials".

Creating Our Form

The code bellow will provide us the form where we can attach our sql file.

How to Create a Guess My Number Game in Python

Submitted by Yorkiebar on
Introduction: This tutorial is on how to make a guess my number game in Python. The Game: This is a simple game where the computer chooses a random number, then the player has a certain amount of guesses to guess the correct number by following the feedback (too high, or too low). The Imports: First we need to import the random module to let the computer choose a random number...