Scripting Languages
jQuery Examples
Example : jQuery code to display message. Example : jQuery code to hide the contents of html elements (Element Selector jQuery). Example : jQuery code to show/hide the contents of html elements. Example : jQuery code to show/hide the contents of html elements using single button. Example : jQuery code Read more…
SQL
SQL Introduction & Features
Introduction SQL stands for ‘Structured Query Language’. SQL is pronounced as ‘Sequel’. SQL statements are like simple English imperative sentence. Features SQL is a query language used to retrieve and manipulate data in various ways as per need of the programmer in a RDBMS. There are 5 common operations performed by the Read more…
SQL
SQL Keywords
Currently Used SQL Keywords NB : SQL Keywords can be used as Identifiers in our query by putting them inside big bracket such as [ADD], [PERCENT], [ALL] etc. ADD EXCEPT PERCENT ALL EXEC PLAN ALTER EXECUTE PRECISION Read more…
Php Theory
Date and Time Code Examples in Php
Example: Php code to display current Day. Example: Php code to display the different date formats. Example : Source codes to display the different Time & Calendar in Php. Example : Php code to check whether the current year is Leap year or not. Example : Different format of Date Read more…
Php Proj
Include & Require Statement in Php
Example : How to insert all Php file contents as it is, in another Php file/page at required place ? NB : We can use ‘require’ in place of ‘include’ also. for more details about them see difference between option.
Php Theory
Super Global Variables in Php
Introduction The concept of Super global variables was introduced in/after PHP 4.1.0. The superglobal variables are also known as Global Variables/Automatic Globals. Definition Super global variables are pre-defined, built-in variables & are of global scopes and hence always accessible from any function, class, file, etc. Features These variables can be used Read more…
Php Theory
Array & String in Php(Examples)
Array Example : How the contents of the Index Array are Displayed in Php? Example : How are the contents of an Array Count in Php? Example : How the contents of an Array are Sort in Ascending Order in Php? Example : How the contents of an Array are Sort in Read more…
Php Theory
Control Statement in Php (Examples)
Example : How to use the if control statement in Php? Example : How to use an if-else control statement in Php? Example : How to use nested if-else control statement in Php? Example : How to use if-else if — else control statement in Php? Example : How to Read more…
Php Proj
Basic/Misc Codes in Php
Example : How to make/use Comment in different ways in Php ? Example : How to Print/Display messages in Php? Example : How to use New Line output/message in Php ? Example : How do we declare different type of variables in Php ? Example : How do we Concatenate(. Read more…