PHP – While Loops Eli the Computer Guy PHP Programming (NEW) While loops allow you to repeat code while a condition remains true. <?php $x = 6; while($x <= 10) { print "hello for the $x time."; print "<br>"; $x++; } ?> PHP
PHP Programming (NEW) PHP – Code Reuse – include Eli the Computer Guy PHP Programming (NEW) Using includes you can reuse the same code in multiple scripts.
PHP Programming (NEW) PHP – Garbage Code and Bad Variables Eli the Computer Guy PHP Programming (NEW) Since Variables in PHP do not need to be declared you can run into issues such as trying to add a String to an Int. You also may have issues if you misspell a variable. […]
PHP Programming (OLD) Comments and INCLUDE in PHP Programming Eli the Computer Guy PHP Programming (OLD)
Be the first to comment