Answers for "how to calculate percentage in php code"

PHP
0

percentage in php

<?php
// How much is the x percentage of given value

$percentage = 10;
$totalValue = 500;

// 10% of 500
echo $newValue = ($percentage*$totalValue)/100;
Posted by: Guest on November-15-2021

Code answers related to "how to calculate percentage in php code"

Browse Popular Code Answers by Language