Answers for "how to calculate sum of numbers in php"

PHP
0

calculate sum (total) of column in php

mysql_connect($hostname, $username, $password);
mysql_select_db($db);

$sql = "select sum(column) from table";
$q = mysql_query($sql);
$row = mysql_fetch_array($q);

echo 'Sum: ' . $row[0];
Posted by: Guest on October-11-2021
0

sum two numbers in php

<?php  
$x=10;  
$y=20;  
$z = $x + $y;  
echo "Sum of x and y : ". $z;  
?>
Posted by: Guest on April-19-2021

Code answers related to "how to calculate sum of numbers in php"

Browse Popular Code Answers by Language