Upgrade PHP version 7.4 to 8.0 on Ubuntu

[ad_1] To upgrade PHP 7.4 to version 8.0 on Ubuntu apache, start a terminal window and type the sudo apt install php8.0 command to install the new PHP version and type sudo a2enmod php8.0 command to enable the PHP 8.0 version and disable the older version using sudo a2dismod php7.4 command on ubuntu system. Here … Read more

Uninstall LAMP Apache PHP MySQL on Ubuntu 22.04

[ad_1] If for any reason you need to completely uninstall or remove lamp stack PHP, MySQL, and apache 2 on your Ubuntu 22.04 or 20.04 system. So for this, you can type these commands on the terminal: such as sudo apt-get remove –purge php, sudo apt-get remove –purge MySQL, sudo apt-get purge apache2 apache2-utils apache2.2-bin … Read more

WordPress Fatal error: allowed memory size of X bytes exhausted

[ad_1] AuthorAdmin My name is Devendra Dode. I am a full-stack developer, entrepreneur, and owner of Tutsmake.com. I like writing tutorials and tips that can help other developers. I share tutorials of PHP, Python, Javascript, JQuery, Laravel, Livewire, Codeigniter, Node JS, Express JS, Vue JS, Angular JS, React Js, MySQL, MongoDB, REST APIs, Windows, Xampp, … Read more

Curl Error 60 SSL Certificate Problem Wamp Xampp

[ad_1] When you face “cURL Error 60: SSL Certificate Problem unable to get local issuer certificate or certificate has expired” in Wamp or XAMPP Server, it means that cURL is having trouble verifying the SSL certificate of the remote server or you are trying to call API. This error usually occurs because cURL does not … Read more

Bar Chart in PHP and MySQL

[ad_1] Data visualization plays an important role in making complex information more understandable and accessible. While developing web applications, it is often necessary to present data in an attractive and intuitive format. Bar charts are an excellent choice for representing categorical data and for comparing values. In this tutorial, you will learn how to create … Read more

How to Export Data from MySQL to Excel using PHP

[ad_1] Export mysql data to excel in PHP; In this tutorial, you will learn how to export data from mysql to excel file using PHP. How to Export Data from MySQL to Excel using PHP Steps to export data from MySQL database to Excel file using PHP MySQL: Step 1: Install PHPExcel Library Step 2: … Read more

PHP MySQL Delete Record with Confirmation

[ad_1] If you are displaying any data in the list. And you want to add a delete button to the list and when a user clicks on the delete button then the confirmation box should open. Data or record is deleted from the database only when the end user confirms. In this tutorial, you will … Read more

FullCalendar Event PHP MySQL Example Tutorial

[ad_1] If you want to integrate jquery fullcalendar with php mysql bootstrap and create, update, fetch, and display event data from the database while doing crud operations with fullcalendar. So it is going to be very easy for you. Throughout this tutorial, you will learn how to integrate fullCalendar in PHP MySQL bootstrap and perform … Read more