non-integer values from an array

Removing strings or non-integer values from an array in PHP – Simple and Easy Method

Removing non-integer entries from array in php Here we are going to discuss how to remove strings or non-integer values from an array in php. For this…

css counter

Automatic serial number in HTML table – CSS Counter

Here we will discuss how to get serial number automatically in a column in the html table. CSS counters are “variables” maintained by CSS whose values can…

reverse string

Reverse String – Qawall

Write a program to reverse string in php We can reverse string in php using the php string function strrev() and without using the string function. Let’s…

json_value

Extract values from JSON data using json_value() Sql – single query

How to extract values from json field using JSON_VALUE() in SQL We can extract a scalar value from json string in sql SELECT query. Syntax : JSON_VALUE…

palindrome number in php

Palindrome Number In PHP – simple and easy method

Write a program to find the number is Palindrome number in PHP A number is called Palindrome when its reverse is same as the orginal number. Eg:-…

fibonacci series

Fibonacci Series

Write a program to find the fibonacci series in php. In Fibonacci series each number is the sum of the preceding ones. Eg:- 0 1 1 2…

number reverse

Number Reverse in PHP

Write a program for number reverse in php. Here we will discuss how to do the number reverse in php without using any string functions. Reverse number…

armstrong number

Armstrong Number

Write a php program to find the number is an Armstrong Number or not If the sum of the cubes of the digits of a number is…

factorial in php

Factorial in PHP Simple Program1

Write a program to find the factorial in php of a number. Factorial of a number is the product of numbers from 1 to ‘n’. Eg:- 5!…

jquery toggle

jQuery Toggle() Method

How to do jquery Toggle() method to show/hide onclick The jQuery toggle() method is used to toggle between the hide() and show() method. It shows the hidden…