Skip to content

Instantly share code, notes, and snippets.

@victor-shelepen
Created February 22, 2015 19:23
Show Gist options
  • Save victor-shelepen/5841b66b7ee08a5d9c96 to your computer and use it in GitHub Desktop.
Save victor-shelepen/5841b66b7ee08a5d9c96 to your computer and use it in GitHub Desktop.
Developex test
$variableA = 0;
$variableB = 1;
$variableC = 2;
if ($variableB >= $variableA) {
watchdog('greater_than','B great than A');
}
if ($variableC <= $variableB) {
watchdog('greater_than','C less than B');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment