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
How do I calculate the metaphone of a string?How do I remove trailing whitespace from a string?
How do I calculate the MD5 hash of a string?
What is the difference between join and implode in PHP?
How can I repeat a string variable several times?
