working through control flow bits (snore) ... smugness is winning ...

This commit is contained in:
Dan Buch 2010-12-28 23:45:44 -05:00
parent 0d8ce1a206
commit 893f3bf3a5

View File

@ -0,0 +1,10 @@
<?php
$x = 4;
$y = 8;
if ($x == 4 AND $y == 8) {
print "omg! x is $x and y is $y";
}
?>