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
PHP Programming (NEW) PHP – switch Statements Eli the Computer Guy PHP Programming (NEW) switch Statements allow you to allow events to happen based on specific values for variables.
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 – isset() Function to Verify if a Variable Has a Value Eli the Computer Guy *NEW, PHP Programming (NEW) The isset() function in PHP checks to see if the value of a variable has been set. this can be useful in applications that allow users to login, or make sure that variables are actually […]
Be the first to comment