$int1 = 1; // value of 1 $int2 = 2; // value of 2 $int_total = $int1 + $int2; // 1+2 Echo '$int_total'; // this should show the number 3