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) Variables and Print in PHP Programming Eli the Computer Guy PHP Programming (OLD)
PHP Programming (NEW) PHP – switch Statements Eli the Computer Guy PHP Programming (NEW) switch Statements allow you to allow events to happen based on specific values for variables.
MySQL Introduction (NEW) MySQL – PHP Print Records to HTML (mysqli) Eli the Computer Guy MySQL Introduction (NEW) You can use PHP to access records in a MySQL database and then print them out in HTML. phpSelect.php phpSelectTable.php
Be the first to comment