Skip to content

Instantly share code, notes, and snippets.

@asmedrano
Created June 8, 2012 13:16
Show Gist options
  • Save asmedrano/2895558 to your computer and use it in GitHub Desktop.
Save asmedrano/2895558 to your computer and use it in GitHub Desktop.
// a simple addition function
function add_these(num1, num2){
$result = $num1 + $num2;
return $result;
}
// lets use it.
$sum1 = add_these(10,25);
echo $sum1; // outputs 35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment