How to delete an element from an array in PHP

[vc_row][vc_column][vc_column_text] How to delete an element from an array in PHP There are many different ways to delete an element from an array. We are discussing 2 ways unset() array_splice()…
How-to-redirect-HTTP-to-HTTPS-my-info-adda

How to redirect HTTP to HTTPS

[vc_row][vc_column][vc_column_text] Redirecting HTTP to HTTPS using .htaccess   .htaccess file is available in root directory (EX. Login into Cpanel > File Manager > public_html ) if in case .htaccess file…

How to find duplicate records in mysql

[vc_row][vc_column][vc_column_text] How to find duplicate records in mysql   IF you want to find duplicate records in a table, you can use the following query In this query we use…

How to Change label text using JavaScript

HTML Code <label id="demo">test</label> there are two ways to change text 1) innerHTML <script> document.getElementById('demo').innerHTML = 'Hello this is demo text'; </script> 2) innerText <script> document.getElementById('demo').innerText = 'Hello this is…

number_format() function

number_format() function formats a number with grouped thousands. Syntax number_format( number, decimals, decimalpoint, separator) <?php echo number_format("1000000");   // output  1,000,000 echo number_format("1000000",2);  // output    1,000,000.00 echo number_format("1000000",2,",",","); // output 1,000,000,00 ?>
How to compare two dates in php

How to compare two dates in php

How to compare two dates in php If we want to compare two dates date one and date two. We have 3 ways to Compare two dates in PHP. 1)…