Programming Code Center(PCC)
[PHP]

(PCC)::[How-to-use-Arithmetic-Addition-operator-in-php]::[php]

File Name : index.php

<!DOCTYPE html>
<html>
<body>

<?php
$x = 10;  
$y = 6;

echo $x + $y;
?>  

</body>
</html>

Output :