multiply percentage (Using Codeigniter 3) - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: multiply percentage (Using Codeigniter 3) (/showthread.php?tid=88814) |
multiply percentage (Using Codeigniter 3) - yabe - 11-12-2023 I have 3 echo values that I need to multiply percentage directly on a view page: $x1 $x2 $x3 Example: $x1 = 1000 $x2 = 50 $x3 = 10 The following should be calculated: x1 * x2 as% * x3 as% Sum of this Example = 50 How should the calculation be with echo on the view-page? RE: multiply percentage (Using Codeigniter 3) - SubrataJ - 11-13-2023 You can do this Code: <span>Sum of this Example = <?= $x1 * ($x2 / 100) * ($x3 / 100) ?></span> RE: multiply percentage (Using Codeigniter 3) - yabe - 11-13-2023 Perfect. Thank You! RE: multiply percentage (Using Codeigniter 3) - SubrataJ - 11-13-2023 You are welcome, please mark it as solved. RE: multiply percentage (Using Codeigniter 3) - InsiteFX - 11-14-2023 To mark it as [SOLVED] at this to your post title [SOLVED] at the end. |