I have the following piece of code for a very simple PHP polling script

<h2>Result:</h2>
<table>
  <tr>
    <td>Yes:</td>
    <td><img src="poll.gif"
width='<?php echo(100*round($yes/($no+$yes+$maybe),3)); ?>'
height='20'> <?php echo(100*round($yes/($no+$yes+$maybe),3)); ?>% </td>
  </tr>
  <tr>
    <td>No:</td>
    <td><img src="poll.gif"
width='<?php echo(100*round($no/($no+$yes+$maybe),3)); ?>'
height='20'> <?php echo(100*round($no/($no+$yes+$maybe),3)); ?>% </td>
  </tr>
  <tr>
    <td>Maybe:</td>
    <td><img src="poll.gif"
width='<?php echo(100*round($maybe/($no+$yes+$maybe),3)); ?>'
height='20'> <?php echo(100*round($maybe/($no+$yes+$maybe),3)); ?>% </td>
  </tr>
  <tr>
</table>

However, if they all have an equal amount of votes, i get a result like 33.333333333%. How do i reduce this to only one decimal place?

Thanks in advance!

link|improve this question

ps. my php skills are shocking, so the simpler the answer the better please!! :) – Graham McDonnell Dec 8 '11 at 14:20
feedback

3 Answers

up vote 0 down vote accepted

by using round after you have multiplied by 100, not before.

<?php echo round(($no/($no+$yes+$maybe) * 100 ),1) ; ?>

Your code could also be simplified a little, to something like this

<?php
$votecount = $no+$yes+$maybe;
$yespercentage = round($yes / $votecount * 100,1);
$nopercentage =  round($no / $votecount * 100,1);
$maybepercentage =  round($maybe / $votecount * 100,1);
?>

<table>
  <tr>
    <td>Yes:</td>
    <td><img src="poll.gif"
width='<?php echo $yespercentage; ?>'
height='20'> <?php echo $yespercentage; ?>% </td>
  </tr>
  <tr>
    <td>No:</td>
    <td><img src="poll.gif"
width='<?php echo $nopercentage; ?>'
height='20'> <?php echo $nopercentage; ?>% </td>
  </tr>
  <tr>
    <td>Maybe:</td>
    <td><img src="poll.gif"
width='<?php echo $maybepercentage; ?>'
height='20'> <?php echo $maybepercentage; ?>% </td>
  </tr>
  <tr>
</table>
link|improve this answer
Sorry, Ive not been very clear, the actual code is: <p> <?php echo round(($james/($angus+$beth+$chris+$claire+$danb+$dans+$gavin+$graham+$james+$la‌​uren+$matt+$rob+$shaun+$simon),14)); ?>% <p/> Could you edit this to be only one decimal place?? – Graham McDonnell Dec 8 '11 at 14:32
change the 14 to 1. – Jan Dragsbaek Dec 8 '11 at 14:37
hmmm, it doesnt seem to have worked. I thought the 14 was there to create the average between the 14 options? – Graham McDonnell Dec 8 '11 at 14:40
the second parameter is the amount of digits. Your brackets are at the wrong place aswell. It should be <?php echo round(($james/($angus+$beth+$chris+$claire+$danb+$dans+$gavin+$graham+$james+$la‌​‌​uren+$matt+$rob+$shaun+$simon)),14); ?>% – Jan Dragsbaek Dec 8 '11 at 14:42
Perfect! Works great! – Graham McDonnell Dec 8 '11 at 16:10
feedback

PHP's Math library has a round method:

http://www.php.net/manual/en/function.round.php

So in this case, you would call round on the result and specify you want it to one decimal place:

$rounded_value = round($result,1);

The first argument is the value you want to round, the second is the number of decimal places - you can leave it blank or use 0 if you want no decimal places.

link|improve this answer
feedback

have you try using number_format() ? like $maybepercentage = number_format(round($maybe / $votecount * 100,1),1); eg:

$maybepercentage =  number_format(round(90 / 120* 100,1),1);
echo $maybepercentage;

the result will become 75.0

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.