Percents

Hello,

I was looking on the php web site and google on how to find a percentage with PHP.

I can divide the number but it comes out as a decimal such as-

$a = 49 / 50;

echo "$a %";

This echos 0.98 % . I would want it to echo 98 % . How can I do this?

Thanks!