How to find minimum value of an array with example

It's very simple to find the minimum value of an array using foreach loop. Create an array with some numeric value. Now create a temporary variable...

Read More

Call by reference in php language with complete example

Let's understand the concept of call by reference by the help of examples. variable $str is passed to the adder function where it is concatenated...

Read More

Switch statement in php language with complete example

Switch statement is used to execute one statement from multiple conditions in PHP. It works like PHP if-else-if statement...

Read More

How to create arrows in CSS - with complete example

Simple way to create arrow in your HTML page, just add few line of CSS and create it. There two step to add arrow in your page.

Read More

Javascript show hide div onclick toggle with example

Javascript toggle method simply toggles the visibility of elements. The matched elements will be revealed or hidden immediately...

Read More

How to calculate the difference between two dates - example

In the given example we will learn how to calculate the difference between two dates in java in terms of Second/ Minutes / Hours / Days.

Read More

Getting checkbox values on submit in PHP with example

If you have multiple options, then you want to get the checked values to store them in variable on form submit, Then you can use this technique.

Read More

How to use a google font on your website with example

For a better web designing every web designer as well as every programmer either beginners or experienced programmer want to create a unique...

Read More

Functions in PHP - how to use with complete example

PHP function is a piece of code that can be reused many times. PHP functions are similar to other programming languages.

Read More