How to Tutorial

How to Convert numbers or Indian Currency into words in PHP

If we are creating an application that deals with financial stuff or billing, then most probably we face a situation where we have to convert numerical value or amount into words.In this article, we will cover this topic by simply...

Updated on ... 10th February 2023
Read More

How to filter or sanitize numbers from strings in PHP?

In this article, we discuss, how to extract or filter out numbers from a string in PHP.There are various ways to do this, some prefer way we are discussing bellowTable of content:Method 1: Using  filter_var() Function. Method 2:...

Updated on ... 10th February 2023
Read More

How to export database data into excel in csv format using PHP

Already created database data export is a familiar operation inside phpMyAdmin We have to go phpMyAdmin  for a database client in PHP. It provides database administration tools and also allows exporting the data. The exported dat...

Updated on ... 11th February 2023
Read More

How to find 3rd maximum or nth maximum salary in MySQL?

In this tutorial, we will discuss about two methods for finding nth maximum salary first one is using  subquery and the second one is using the  aggregate function. this is the most common question a...

Updated on ... 11th February 2023
Read More

How to delete multiple row by selected checkboxes using PHP and ajax

Here, I will discuss deleting multiple rows from the MySQL database on the basis of the selected checkbox in PHP with oops.  I have shown you how to use Ajax and JQuery to delete multiple records on the basis of checked checkboxe...

Updated on ... 09th April 2023
Read More