Conditionals
A conditional statement evaluates an expression and executes instructions depending on the outcome of the evaluation. Most of the time, the evaluation is boolean (true or false).
An example of a simpl conditional in PHP:
$secret_number = 54;
if $player_guess ==
A video[edit]
This video references the C programming language and scratch, but the ideas about conditionals are excellent. In the case of conditionals, PHP and C share similar syntax (but not exact).
Standards[edit]
- Define the terms: variable, constant, operator, object.