box-o-sand/web/html/wikipedia-tutorial/if-structure.php
2011-01-02 23:22:12 -05:00

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";
}
?>