PHP – if Statements Eli the Computer Guy PHP Programming (NEW) If Statements allow you to trigger code if specific conditions are met. <?php $age = 20; print “Your Age is $age”; print “<br>”; if ($age < 18) { print “you too YOUNG”; } ?> 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 (OLD) Basic Math and Numbers in PHP Programming Eli the Computer Guy PHP Programming (OLD)
PHP Programming (NEW) PHP – Multidimensional Arrays Eli the Computer Guy PHP Programming (NEW) Multidimensional delays are when you use Arrays as values for Arrays.
Be the first to comment