11 lines
116 B
PHP
11 lines
116 B
PHP
|
<?php
|
||
|
|
||
|
$x = 4;
|
||
|
$y = 8;
|
||
|
|
||
|
if ($x == 4 AND $y == 8) {
|
||
|
print "omg! x is $x and y is $y";
|
||
|
}
|
||
|
|
||
|
?>
|