PDFS in PHP with DomPDF, HTML and CSS
In this tutorial we are going to see step by step how we can easily generate PDFs with PHP, HTML and CSS. Content How to get PDFs using PHP? How…
In this tutorial we are going to see step by step how we can easily generate PDFs with PHP, HTML and CSS. Content How to get PDFs using PHP? How…
In this tutorial I am going to explain how to store Arrays in a database regardless of their complexity. With what I am going to explain to you next, you…
If you need to cut a text string from a larger one in PHP you are in the right place. In this article I am going to show you how…
When we embark on web projects that are made up of dynamic pages, it is inevitable to read and write data, store it and achieve persistence, and this is generally…
It is common that, when faced with compatibility problems with Apache's default port (port 80) in a Windows installation, you need to change the port that it uses in localhost.…
It is usually a case to enter special characters in SQL right?, but don't worry! I have prepared this special article about introducing rare characters in SQL, where I explain…
With the following PHP snippet you can generate simple and secure passwords (without coding). Specifically, I am going to show you one. php function so you can reuse the code…
The following php function allows you to securely encrypt passwordsthus preventing them from being read or decrypted by reading them from the database or from the application itself. I recommend…
With the following PHP function you can calculate the distance between two locations knowing their latitudes and longitudes. Its use is really useful if you are creating web applications with…
In PHP, if you want to delete a directory, for security, first you must delete all its contents, whether they are files or other directories. for this purpose you need…