8 lines
89 B
Plaintext
8 lines
89 B
Plaintext
if ($x -gt 5) {
|
|
echo hi
|
|
} elseif ($x -lt 10) {
|
|
echo bye
|
|
} else {
|
|
echo none
|
|
}
|