Answers for "get percentage of a number php"

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
0

percentage in php

$percentage = 10; //persentage
$totalWidth = 1000; //Summa

$new_width = ($percentage / 100) * $totalWidth;
Posted by: Guest on January-05-2022

Code answers related to "get percentage of a number php"

Browse Popular Code Answers by Language