PHP Questions Home

Categories

Arrays
Files
Forms
Functions
Images
MySQL
Numbers
Others
Strings
Website


PHP Functions

PHP Functions


More PHP

Top Questions
Ask a Question

How do I print text to the screen?


This is very simple, however we all need to start somewhere.

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?