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
MySQL Introduction (NEW) MySQL – Update Records with PHP Eli the Computer Guy MySQL Introduction (NEW) Using PHP you can update records in your MySQL tables. phpUpdate.php
PHP Programming (NEW) PHP – Creating Arrays Eli the Computer Guy PHP Programming (NEW) 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 – Access Named Keys in Arrays – Foreach() Eli the Computer Guy PHP Programming (NEW) The foreach() function can turn Named Keys into variables just like it does array values.
Be the first to comment