Category: "Programming" (33)

Compare any changed data of HTML table among different rows

Dec 11, 2024

In a HTML table where have multiple rows of same data with some difference in any cell. Now you want to highlight that specific cell data which is changed only....

Export MySQL data into CSV using PHP

Nov 25, 2024

To fetch data from a MySQL database and export it to CSV using PHP, you can follow these steps: **Explanation:** - Database Connection: Replace your_username, your_password, your_database_name, and your_table with...

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...

Exclude Latest Post in WordPress Custom Loop

Apr 21, 2024

When you build a website in WordPress, sometimes you may not want to show the latest post in a custom section. For example, on a news website, the latest post is...