php

  • Basics of Object Oriented Programming in PHP - Part I

    PHP is a Computer Language that embraced OOP (Object Oriented Programming) and currently it fully supports all OOP Principles and Patterns. This makes PHP a very powerful, yet friendly Programming Language. Mastering OOP in PHP requires to fully

    ...
  • Basics of Object Oriented Programming in PHP - Part II

    Understanding key Object Oriented Programming concepts is required to be able to produce Modern, High Quality PHP Software Applications that stick to OOP Best Practices and Principles.

    Prerequisites:

    ...
  • Basics of Object Oriented Programming in PHP - Part III

     As I was mentioning in past Article, understanding key Object Oriented Programming concepts is required to be able to produce Modern, High Quality PHP Software Applications that stick to OOP Best Practices and

    ...
  • Configure MariaDB in a Vagrant Virtual Machine

    Before you can read and write data to the Database inside your virtual machine, you need to finish setting up MariaDB Server.

    Prerequisites: ...

  • Configure Nginx Web Server with SSL in a Vagrant Virtual Machine

    Before you are able to run any PHP project in your Vagrant VM and display pages in a browser, you need to configure Nginx and set a Virtual Host.

    The best way to configure it to to enable SSL and HTTP2, the same way as you should in your

    ...
  • Configure PHP in Virtual Machine to work as LEMP Server

    Prerequisites:

    ...
  • Converting JPG to PNG Images in PHP 8: Examples and Techniques

    Image conversion is a common task in web development when you need to change the file format of an image. In PHP 8, there are several techniques and libraries available to convert JPG images to PNG format. In this article, we will explore some

    ...
  • cURL and how to use it from PHP

    The cURL (Client URL) library is a powerful tool that allows you to send and receive HTTP requests from within your PHP code. It supports various protocols like HTTP, HTTPS, FTP,

    ...
  • Data transfer objects what are DTOs

    Data transfer objects what are DTOs in PHP