The following example will output the sum of two variables:


SUBMITTED BY: henry1874w

DATE: June 4, 2017, 7:46 p.m.

FORMAT: Text only

SIZE: 42 Bytes

HITS: 251

  1. <?php
  2. $x = 5;
  3. $y = 4;
  4. echo $x + $y;
  5. ?>

comments powered by Disqus