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 (OLD) Redirecting Web Pages with Header Function in PHP Eli the Computer Guy PHP Programming (OLD)
PHP Programming (OLD) Comments and INCLUDE in PHP Programming Eli the Computer Guy PHP Programming (OLD)
PHP Programming (NEW) PHP – Turn File Into an Array – file() Eli the Computer Guy PHP Programming (NEW) By turning a file into an array you can work with the data within it as you would a standard array.
Be the first to comment