conditional sentences type in php code example
Example 1: one lin if statement php
<?php if ($requestVars->_name == '') echo $redText; ?>
Example 2: if statement php
if (condition) {
expression
}
<?php if ($requestVars->_name == '') echo $redText; ?>
if (condition) {
expression
}