1--TEST-- 2Add 3 variables together and print result 3--FILE-- 4<?php $a=1; $b=2; $c=3; $d=$a+$b+$c; echo $d?> 5--EXPECT-- 66 7