In Perl, there are if/else shortcuts that allow one to turn this:
if ($Variable) { print "$Variable"; }
...into...
print "$Variable" if $Variable;
Is that a PHP equivalent to this shortcut?
it works if you do it like this:
<? $Variable = "Variable"; echo $Variable; if ($Variable); ?>