I'm getting a warning "Division by zero"
this is the code
<p class='text-alert' id ="greet" align="left">Kill Death Ratio : <?php
$kd = $data['kills'] / $data['deaths'];
echo round($kd, 2);
?></p>
i guess i get it only when the kills and death values both are zero Is there any possible solution