Posted in JavaScript Tutorial PHP Tutorial

Loops – PHP Basics

Loop is used whenever you want a code to run over and over again in row. We…

Posted in JavaScript Tutorial PHP Tutorial

If..Else..ElseIf, Switch Statements – PHP Basics

If…Else..ElseIf Statement is used when you want to perform different conditions in a program. If one condition…

Posted in JavaScript Tutorial PHP Tutorial

Date And Time – PHP Basics

In PHP to format a date or a time, ‘date( )’ function is used. This function makes time…

Posted in JavaScript Tutorial PHP Tutorial

Form Validation – PHP Basics

Here, In this simple form validation  “Name”, “E-mail”, “Subject”, “Feedback” and “Gender” fields are required. These fields cannot…

Posted in JavaScript Tutorial Python Tutorial

Hangman Game Using Python

This is a Python script of the classic game “Hangman”. The word to guess is represented by…

Posted in JavaScript Tutorial JS Tutorial

Number Conversions Using JavaScript

This program coverts Decimal number to binary, hexadecimal and octal. Follow these Instructions or You can simply…

Posted in JavaScript Tutorial JS Tutorial

Auto Sum Calculation Using JavaScript

This JQuery script will show how to auto calculate sum while you type values in the fields….

Posted in JavaScript Tutorial JS Tutorial

Random Password Generator Using JavaScript

This Simple Program allows user to enter password length and generates Random Password according to user’s length….

Posted in JavaScript Tutorial Python Python Tutorial

Python Basics : Multiplication Table

Multiplication Table From 0 to 15. Python Code :- #multiplication table from 0 to 15 print(” “,end=””)…

Posted in JavaScript Tutorial Python Python Tutorial

Python Basics : How To Calculate Salary of Employee (with Taxable amount)

Simple Python Program To Calculate Salary of Employee with their certain Taxable amount. This program allows the user…

Posted in JavaScript Tutorial Python Python Tutorial

Python Basics : How To Calculate Average Number

This simple Python program allows the user to enter infinite values (with y/n condition ) and then add those…