How to close the PDO connection from PHP
The connection to the database through PDO is usually my favorite, because I love being able to connect to different DBMS with the same methodology. But there is a little…
The connection to the database through PDO is usually my favorite, because I love being able to connect to different DBMS with the same methodology. But there is a little…
Second bulletin of problems to learn php. These exercises are to work on control structures, specifically the IF and ELSE IF conditionals. Exercises for beginners, intermediate and advanced level. Although…
In PHP, as in other programming languages such as Javascript, the place where we create our variables or the way to do it will define their availability. Content What is…
Often, when we develop web applications, the possibility of uploading files or images to the server is necessary, whether we are webmasters, authorized users or part of the general public…
In this tutorial we are going to see an alternative form of representation to the common IF and ELSE that we usually use in php. Specifically, it is very useful…
The FOR loop in PHP is another iterative structure just like the loop while. Its operation is identical but the way of programming it varies. For this reason, I recommend…
Content What is PHPUnit used for? Installing PHPUnit on Windows 1. Create containing folder 2.Edit PATH environment variable 3. Add new path to the PATH variable 4. Add php installation…
Solutions to the second bulletin of php exercises on if and else if. The solutions are step-by-step explanations of the script that provides the solution to each exercise. If you…
Even though we have been doing this for years, from time to time and right under our noses we come across Notice: Undefined index XXXX on line XXXX. A problem…
Back-end and Front-end, two terms that refer to developers, usually web developers, and who have specific skills. What makes you apt to call yourself with one term or another? Let's…