<html>
<p>
<?php
// Get a partial string from within your own name
// and print it to the screen!
$name = "Anonymous";
print substr($name,3,3);
?>
</p>
<p>
<?php
// Make your name upper case and print it to the screen:
print strtoupper($name);
?>
</p>
<p>
<?php
// Make your name lower case and print it to the screen:
print strtolower($name);
?>
</p>
</html>
No comments:
Post a Comment