Programming

What is class and functions in PHP script or object oriented programming

What is Class in Programming ? A class is a collection of variables and functions working with these variables. Variables are defined by var and functions are defined by function. It is an object oriented programming. Define a class Define a class using a keyword class Syntax class className { } Example class myfirstprogram { …

What is class and functions in PHP script or object oriented programmingRead 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 }; // …

essential and important JavaScript functions required in websiteRead 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; …

important MYSQL syntaxes or query in php programRead More »

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 …

PHP script to find Highest, lowest, count and average numbers in arrayRead More »