how to add two numbers strings in php code example
Example 1: how to add two string in php
Remember dot .
Example 2: add two numbers in php
<?php
$x=15;
$y=30;
$z=$x+$y;
echo "Sum: ",$z;
?>
Remember dot .
<?php
$x=15;
$y=30;
$z=$x+$y;
echo "Sum: ",$z;
?>