What is PuTTY? How to install and use it?

What is PuTTY? PuTTY is a free open source terminal emulator, serial console and network file transfer application. It supports many network protocols, such as telnet, SSH and raw socket connection. PuTTY comes with many features like PuTTY (the Telnet and SSH client itself) PSCP (an SCP client, i.e. command-line secure file copy) PSFTP (an … Read more

How to create database user account in cPanel ?

How to create database user account in cPanel ? To create a database user account in cPanel. Follow the below steps : Step 1: Log in to your cPanel account. Step 2: In Database menu, click the ‘MYSQL database wizard’. Step 3: Next to New Database, enter the name for your database and click ‘Next Step’. … Read more

What is FileZilla? How to install and use ?

What is FileZilla? FileZilla is a powerful and free software for transforming files over the internet. It is a cross platform application, consisting of FileZilla client and FileZilla server. The main purpose of FileZilla is to make it easy for you to upload and download files from your Web hosting server. Also you can edit the … Read more

essential and important JavaScript functions required in website

These are the following important java script functions used in a website. Please note that you may use jquery for all functions Progressive pop ups for Social networking <script> // create social networking pop-ups (function() { // link selector and pop-up window size var Config = { Link: “a.share”, Width: 500, Height: 500 }; // … Read more

important MYSQL syntaxes or query in php program

SQL QUERY SQL stands  for Structured Query Language, it is used for accessing and manipulating  databases. Using SQL one can perform more actions in a database.Such as insert, update, select and delete a records from the database. Essential SQL queries 1. To create a database in mysql  Create database is used to create the database. Syntax CREATE DATABASE database_name; … Read more

What is session in php, how to start and stop session

Session in PHP Session is a way to store the user information(in variables) to be used across multiple pages. For example, When we work with an application, we may open it, do some modification and we close it. This is what a session is.The computer may know who you are, and when you start and end … Read more

Categories PHP

PHP script to find Highest, lowest, count and average numbers in array

To find a highest, lowest, count and average numbers in an array Here, we find the sample php programs to find the find he highest number in an array, similarly lowest number in an array, count of the numbers in an array and average of the numbers in an array. <?php $array=array(‘1′,’2′,’3′,’4’); echo “Given array … Read more