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!
Comment on this Question and Answer >>>
ASK A QUESTION
More strings PHP Questions
What is the difference between print and echo?How can I repeat a string several times?
How do I escape a string with slashes?
How do I format the output of a string?
How do I fetch the meta tags from a webpage using PHP?
