PostgreSQL, MariaDB and MySQL are all relational database management systems (RDBMS) based on SQL. They are all open source software and offer a variety of features and tools for managing databases. However, each of these databases has its own advantages and disadvantages that should be considered when choosing the right database for your project. PostgreSQL PostgreSQL […]
Category: MariaDB
PHP contact form with MariaDB database storage and Google reCAPTCHA
PHP contact form with MariaDB database storage In this blog post, I will show you how to create a PHP contact form that both sends the entered data via email and stores it in a MariaDB database. We will walk you through the process step by step and add examples to help you implement it. Step 1: Create HTML form First, you create […]
Tutorial – How to install Apache, PHP 8.2, MariaDB and Let's Encrypt
Apache Installation and Configuration 1. First update your system's package list: sudo apt update 2. Install the Apache web server: sudo apt install apache2 PHP 8.2 Installation and Configuration 1. Add the Ondrej sury PPA repository: sudo add-apt-repository ppa:ondrej/php sudo apt update 2. Install PHP 8.2: sudo apt install php8.2 libapache2-mod-php8.2 MariaDB Installation and Configuration 1. Install […]