box-o-sand/php-practice/web/html/wikipedia-tutorial/if-structure.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";
}
?>