Monday, December 6, 2021

PHP Basic Math Operation - Basic PHP Guideline


 







How we can use math operation using php.

$num1 = 20;
$num2 = 40;
$sum = $num1 + $num2;
echo $sum;

0 comments

Post a Comment