$getKills = mysqli_query($connection, "SELECT * FROM Kills");
$getMurderer = mysqli_query($connection, "SELECT * FROM Kills WHERE Killer='$getUser->Username'");
$numKills = mysqli_num_rows($getKills);
$numKiller = mysqli_num_rows($getMurderer);
How would I get the percentage of how many kills the Player got out of all of them?
e.g. If there was 20 kills recorded, and the player only got 6, it would say
Player has 30% kills out of $numKills