summaryrefslogtreecommitdiff
path: root/tests/lang/004.phpt
blob: be1f98ade5554907eb449e29d9e7ee5d4403d197 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Simple If/Else Test
--POST--
--GET--
--FILE--
<?php $a=1; 
  if($a==0):
	echo "bad";
  else:
	echo "good";
  endif?>	
--EXPECT--
good