I have this segment of code:
echo "<td>".$row['kid']."</td>";
echo "<td>".$row['kidcount']."</td>";
echo "<td>".$row['count']."</td>";
I want to have another column where it takes the value in count and divides it by kidcount. i.e. count/kidcount. Then display this in another column.
How would I do that?
Thanks,
Jon