PHP is great for being able to easily create web apps that work. The problem is that it also easy to create code with major vulnerabilities that is a mess to read and try to audit. Many times PHP is used by desktop support technicians to create apps to track department inventory, or work orders that after a few years get coopted by the rest of the company and are being used at a scale never envisioned when the technician was copy/ pasting from a dummies book to make the code work.
Related Articles

*NEW
PHP – Turn Strings into Arrays with explode()
The explode() function allows you to turn a String into an Array based on a separator you define. explode() https://www.php.net/manual/en/function.explode.php https://www.w3schools.com/php/func_string_explode.asp explode.php

MySQL Introduction (NEW)
MySQL – HTML Form Validation with PHP (filter_var)
You can validate that variable values look how they are supposed to by using filter_var in PHP. Filter_var determines if an email address, IP address, Int, Float, etc are formatted how they are supposed to […]

PHP Programming (NEW)
PHP – Comparison Operators
Comparison Operators allow you to compare variable values against values to determine whether an event should trigger. You use Comparison Operators in Loops and If Statements.
Be the first to comment