Sign in
apache
/
httpd-tests
/
refs/heads/trunk
/
.
/
t
/
htdocs
/
php
/
nestif.php
blob: 6b0654a12bcf651eaa1e1553942474d7c9039032 [
file
]
<?
php $a
=
1
;
$b
=
2
;
if
(
$a
==
0
):
echo
"bad"
;
elseif
(
$a
==
3
):
echo
"bad"
;
else
:
if
(
$b
==
1
):
echo
"bad"
;
elseif
(
$b
==
2
):
echo
"good"
;
else
:
echo
"bad"
;
endif
;
endif
?>