Category: "Programming" (33)

Change default sender name and sender email in WordPress form

Apr 8, 2025

When you get any email from your self hosted WordPress website, form name of that email will be **WordPress** which is quite annoying to you or your clients. You can overwrite...

WordPress custom menu page, fetch data from custom MySQL table and export to CSV

Apr 3, 2025

To create a custom menu page in WordPress, retrieve custom table data from MySQL, and display it with the ability to export to CSV/Excel, you can follow these steps: **Step 1:**...

PHP script to download file from specific folder

Mar 11, 2025

Below is a simple example of a PHP script that allows you to download file from a specific folder. You can link to this PHP file with the file name...

Update cache of Elementor based website

Feb 11, 2025

When you move your WordPress site to a new domain, some design problems can happen. This is common if you use Elementor. Your website may look broken. Some styles may...

Upload image and PDF file using PHP

Feb 10, 2025

Here is a PHP script that allows users to upload image and PDF files with a maximum size of 5 MB. The uploaded files will be renamed using the current...

MySQL columns total and show highest totals

Jan 10, 2025

To get the total of a MySQL field and then select the three highest totals from the table, you can use the following PHP script: Make sure to replace ‘your_username’, ‘your_password’,...