PHP Snippets: If Statements

PHPThis post is part of the PHP Snippets series where I will be covering the basics of developing in PHP.

One of the most basic statemnts you’ll use in PHP is the if statement which is used for conditional statements which perform different actions.

The most basic form is the basic if itself which executes when one condition is true:

$time = date( "H" );

if ( $time < 12 ){
echo "Good morning.";

Continue Reading azurecurve’s Article on their blog

PHP Snippets: If Statements

This post is part of the PHP Snippets series where I will be covering the basics of developing in PHP. One of the most basic statemnts you’ll use in PHP is the if statement which is used for conditional statements which perform different actions.

Blog Syndicated with azurecurve’s Permission

Author: Ian Grieve

Share This Post On
Share via
Copy link
Powered by Social Snap