- or download this
if ($some_condition) {
some_stuff();
...
some_more_stuff();
}
}
- or download this
if ($some_condition) {
some_stuff();
...
if ($some_condition && !$some_condition2) {
some_more_stuff();
}
- or download this
IF: {
if (some_condition) {
...
some_more_stuff();
}
}