Related Articles

MySQL Introduction (NEW)
MySQL – PHP Prepared Statements
Prepared statements help prevent SQL Injection attacks. Essentially they send a template for your SQL Statement, and then inserts the variables separately. This prevents hackers from escaping out of the original SQL statement and being […]

PHP Programming (NEW)
PHP – if Statements
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 Programming (NEW)
PHP – switch Statements
switch Statements allow you to allow events to happen based on specific values for variables.
Be the first to comment