PHP – Do While Loops Eli the Computer Guy PHP Programming (NEW) Do While Loops perform one iteration before a condition is tested. <?php $x = 80; do { print "Hello time number $x"; print "<br>"; $x++; } while($x <= 10); ?> PHP
PHP Programming (NEW) PHP – While Loops Eli the Computer Guy PHP Programming (NEW) While loops allow you to repeat code while a condition remains true.
*NEW PHP Project (Simple) – Simple Network Up/Down Monitor Eli the Computer Guy *NEW, PHP Projects This is a simple Up/Down network monitor to show what your server is able to see on the network and internet. shell_exec() https://www.php.net/manual/en/function.shell-exec.php shellExecPingArray.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
Be the first to comment