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 – Logical Operators Eli the Computer Guy PHP Programming (NEW) Logical Operators allow you to use AND or OR in comparisons for Loops and If Statements.
MySQL Introduction (NEW) MySQL – INSERT Records with HTML Form and PHP Eli the Computer Guy MySQL Introduction (NEW) You can easily create an HTML form with PHP to insert records within your MySQL database. Warning – It’s important to create a troubleshooting routine, and verify you have written your code properly. form.html phpTEST.php […]
PHP Programming (OLD) Variables and Print in PHP Programming Eli the Computer Guy PHP Programming (OLD)
Be the first to comment