PHP – Code Reuse – include Eli the Computer Guy PHP Programming (NEW) Using includes you can reuse the same code in multiple scripts. //include.php <?php $time = time(); include 'included.php'; print $message; print "</br>"; print $time; ?> //included.php <?php $message = "HELLO WORLD FROM AN INCLUDE"; ?> 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 – if else Statements Eli the Computer Guy PHP Programming (NEW) If Else Statements allow for code to run if a condition is true, but have different code run of a condition is false. <?php $age = 15; print “Your Age is $age”; print “<br>”; […]
PHP Programming (NEW) PHP – Do While Loops Eli the Computer Guy PHP Programming (NEW) Do While Loops perform one iteration before a condition is tested.
Be the first to comment