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