These are the changes of Magento 2.4.2 compared to previous versions. We need to know these before installation. Magento 2.4.2 moved the ind...
how to do variables using loop in javascript
In this article, you will learn how to use the JavaScript loop statement to create a loop with various options. The three most common types...
how to pass array from controller to view and use that array in view for display the data
In this article, I am going to explain A view is a webpage that displays all the elements of the UI. In many cases, the view is often a frag...
how to create insert select query in MySQL
Let me show various use cases of the insert query. In this article, I am going to cover the following: Simple INSERT statement to add data t...
How to run cron jobs every 5, 10, 15 or 30 minutes and every hour, day, week, month
Cron is a software utility or Linux command also recognized as a Cron job used to schedule tasks or jobs to be executed after a fixed interv...
PHP does not show render pages
If you installed PHP via package (like yum -y install php), then you should have an /etc/httpd/conf.d/php.conf that specifies the needed ent...
Google map load on modal using php and javascript
In this article, I will explain how to display Google Maps inside the jQuery UI Dialog Modal Popup window. Here you can try this, $('#my...
ucwords not capitalizing accented letters
ucwords is one of the core PHP functions which is blissfully oblivious to non-ASCII or non-Latin-1 encodings.* For handling multibyte string...
Get error 500 Internal issue during ajax response
The 500 Internal Server Error is a very general HTTP status code. It means something has gone wrong on the website and the webserver is unab...
How to Connect MySQL DB with PHP
Here I will tell you how to connect MySQL Database with PHP website. Kindly follow the below steps to further process. Firstly Check ...