Skip to content

Instantly share code, notes, and snippets.

@frullah
Created August 6, 2020 19:22
Show Gist options
  • Save frullah/16916ded244687b702fd599cdd390ea7 to your computer and use it in GitHub Desktop.
Save frullah/16916ded244687b702fd599cdd390ea7 to your computer and use it in GitHub Desktop.
Code fix for my friends
<?php
if (is_numeric($data1) && is_numeric($data2)) {
return $data1*$data2;
} else {
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment