How do I print text to the screen?
Just for fun, there are a couple of ways of doing this:
<?php
echo "Please don't make me say it... \n";
print "Hello World!";
?>
Prints this:
Please don't make me say it...
Hello World!
More strings PHP Questions
How do I make the first letter of a string uppercase?How do I convert newlines to HTML line break tags?
How do I make sure a string is a certain length?
What is the difference between print and echo?
How do I turn a string into an array?