Import CSV data into MySQL using PHP

Nov 21, 2024

Here’s a detailed example of how to import data from a CSV file into a MySQL database using PHP. The script processes each row one by one, displays a...

Print total of a variable inside while loop outside of the loop

Nov 21, 2024

To accumulate values from a MySQL query inside a while loop and then calculate the total value outside the loop, you can use a variable to store the total value...

Important WordPress theme functions

Sep 5, 2024

**Updated as on April 9, 2026** I have been working on WordPress for years and I still carry aroung a standard functions.php file while develop a new WordPress theme. I am...

Popular web server error codes

Oct 20, 2023

Many a time when we try to visit any particular web page, we get an error code displaying in lieu of the original page. Have you ever surprised what that...

Useful GIT commands

Sep 12, 2023

List of all the useful GIT commands which I use for my daily web development work. **Repository Setup / Initialize new repo** **Set global email** **Clone existing repo** **Check remote repository** **Add remote repository** **Check...

PHP function to get difference between dates

Jul 15, 2023

Below is a PHP function that calculates and displays the difference in days between two dates. This function will take two date strings as inputs, convert them to DateTime...