Return to 006.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / basic |
1.1 ! misho 1: --TEST-- ! 2: Add 3 variables together and print result ! 3: --FILE-- ! 4: <?php $a=1; $b=2; $c=3; $d=$a+$b+$c; echo $d?> ! 5: --EXPECT-- ! 6: 6