Skip to content

Instantly share code, notes, and snippets.

@adamculpepper
Created January 4, 2015 19:59
Show Gist options
  • Save adamculpepper/f1172fdeb5ccc086f059 to your computer and use it in GitHub Desktop.
Save adamculpepper/f1172fdeb5ccc086f059 to your computer and use it in GitHub Desktop.
//Calculate percentage of two numbers
$user1 = 100;
$user2 = 50;
echo ($user2 / $user1) * 100; //output: 50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment