Skip to content

Instantly share code, notes, and snippets.

@flaviors200
Last active June 4, 2019 10:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flaviors200/37fa02d4b623627f8dce9669cbd57541 to your computer and use it in GitHub Desktop.
Save flaviors200/37fa02d4b623627f8dce9669cbd57541 to your computer and use it in GitHub Desktop.
Conditional statements: if
<?php
$x = 10;
$y = 8;
if ($x > $y) {
echo "$x è maggiore di $y"; // Output: 10 è maggiore di 8
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment