PHP – For Loops Eli the Computer Guy PHP Programming (NEW) For loops are ways to repeat specific code based on whether a condition continues to be true. <?php $x = 1; for ($x; $x <= 20; $x++) { print $x; print "<br>"; } ?> PHP
PHP Programming (NEW) PHP – Multidimensional Arrays Eli the Computer Guy PHP Programming (NEW) Multidimensional delays are when you use Arrays as values for Arrays.
*NEW Linux Projects – Parse NMAP XML Output with PHP Eli the Computer Guy *NEW, Linux Projects This project shows you how to parse (read) the nmap XML output file and turn ip addresses, mac addresses, hostnames, vendors and ports into PHP variable values and then print them out. Prerequisite Classes: Linux […]
Be the first to comment