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

PHP Programming (NEW)
PHP – Access Array Values – Foreach()
The foreach() function allows you to loop though an array to process the values as variables.

PHP Programming (NEW)
PHP – if else Statements
If Else Statements allow for code to run if a condition is true, but have different code run of a condition is false. <?php $age = 15; print “Your Age is $age”; print “<br>”; […]

PHP Programming (OLD)
Be the first to comment