diff --git a/client/src/pages/guide/english/php/if-else-statement/index.md b/client/src/pages/guide/english/php/if-else-statement/index.md index 760b0f0e0d..4d679a1232 100644 --- a/client/src/pages/guide/english/php/if-else-statement/index.md +++ b/client/src/pages/guide/english/php/if-else-statement/index.md @@ -92,5 +92,16 @@ For instance: Another important option to consider when using short If/Else statements is the ternary operator. +Also there is an alternative syntax for control structures +~~~~ + if (condition1): + statement1; + endif; + else + statement5; +~~~~ +For more information check out the following link: +PHP Alternative syntax for control structures + For more information please check out the following link: [PHP: if](http://php.net/manual/en/control-structures.if.php)