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
MySQL Introduction (NEW) MySQL – PHP to INSERT Into Table Eli the Computer Guy MySQL Introduction (NEW) You can use PHP to INSERT data into MySQL Tables. This data can come from HTML forms, or things such as scripts that parse text documents. phpInsert.php
Be the first to comment