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…
Reverse String – Qawall Read More »
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…
Reverse String – Qawall Read More »
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…
Extract values from JSON data using json_value() Sql – single query Read More »
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:-…
Palindrome Number In PHP – simple and easy method Read More »
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…
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…
Number Reverse in PHP Read More »
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…
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!…
Factorial in PHP Simple Program1 Read More »
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…
jQuery Toggle() Method Read More »
How to get current date in javascript? Date() is a feature of javascript. Check the full date feature here. Date objects are created with the new Date() constructor. By…
Get current Date in javascript Read More »
How to create folder using php. Use mkdir() function to create new folder using php. We can also specify the full path to create folder as follows,…
Create folder using php Read More »
How to create csv file with php? Generating csv file with php and download it. In this article we will discuss about how to create CSV file…
Create CSV file with php Read More »
Sending emails using php can be done by the mail() function. If you are looking for codeigniter mail function please click here. In this article we will…
Sending Emails using PHP Read More »