Naming Keys in Arrays makes it easier to verify you are interacting with the appropriate data in an array.
Related Articles

*NEW
PHP – glob() Function to List and Filter Files in Folder
The glob() function in PHP allows you to search folders and put the results into an array based on basic filtering. glob() https://www.php.net/manual/en/function.glob.php https://www.w3schools.com/php/func_filesystem_glob.asp glob.php glob.php (with Image Embed)

PHP Programming (NEW)
PHP – Creating Arrays
Arrays allow for a variable to have multiple values. This gives you the ability to create lists of names, and be able to sort them easily. Also it allows you to have values from a […]

PHP Programming (NEW)
PHP – if Statements
If Statements allow you to trigger code if specific conditions are met. <?php $age = 20; print “Your Age is $age”; print “<br>”; if ($age < 18) { print “you too YOUNG”; } ?>
Be the first to comment