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 (OLD) Redirecting Web Pages with Header Function in PHP Eli the Computer Guy PHP Programming (OLD)
PHP Programming (NEW) PHP – Viewing PHP Environment with PHPinfo() Eli the Computer Guy PHP Programming (NEW) The PHPinfo() function prints out a report of al of the PHP configurations and settings for your server. <?php phpinfo(); ?>
Be the first to comment