more basic stuff ... getting bored ...

This commit is contained in:
Dan Buch 2010-12-28 23:18:20 -05:00
parent a4d57e3e34
commit a0dda0bcfb

View File

@ -21,5 +21,15 @@
<?php $z = $y * $y * $x; ?>
<p><?php print $z - 1250; ?></p>
<p>
<?php
$string = "PHP is wonderful and great.";
$string = $string . " " . "All the cool kids are doing it.";
print $string;
?>
</p>
</body>
</html>