How to Create Social Sharing Links for Facebook, whatsapp and more

Here is the very simple social share link generator tool. You can put this as social media share links html in your project root file.

Read More

Find the Largest Number in an Array using php with example

Find the Largest Number in an Array using php with example. Complete example for getting largest number in an array.

Read More

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

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