echo command & escape character in PHP

echo Printing or sending output to browser at client side is the main objective for which we will be developing our scripts in PHP. Finally after processing the code at server side we manage the output various ways and send them by using one echo command.

First PHP page for Hello world output and checking installation with phpinfo() and uses of comments


You have seen how we have used echo command to post our first string Hello World in our first lesson of PHP guide. Here it is again
<?Php
echo "Hello World";
?>
To learn more on this let us try to print the value of a PHP variable. To start with let us print today's date by using one variable.

<?Php
$date= date("m/d/y");
echo "Today is $date";
?>
Some time we may require to print the name of the variable than printing the data. So here we will use escape character ( \ ) before the $ symbol to tell PHP that consider the next character as string and not as a variable.

<?Php
$date= date("m/d/y");
echo "Today is $date, this value was stored inside variable \$date";
?>

Using PHP within HTML codes.

Some time within a code block of HTML we want to display the data of a PHP variable. For this we need not use the PHP start command and then echo command, we can use short method like this to display the data stored in variable $value.
<?Php echo  $value; ?>
We can also use escape character ( \ ) to print double quotes to the screen by using echo command. Here is an example.
<?Php
echo "John said \"He is learning PHP \" by reading ";
?>
Output is here
John said "He is learning PHP " by reading 

print to output string Introduction to PHP Adding delay to script execution Guide to installation and How to write our first PHP Script

Subhendu Mohapatra — author at plus2net
Subhendu Mohapatra

Author

🎥 Join me live on YouTube

Passionate about coding and teaching, I publish practical tutorials on PHP, Python, JavaScript, SQL, and web development. My goal is to make learning simple, engaging, and project‑oriented with real examples and source code.



Subscribe to our YouTube Channel here



plus2net.com







Dan Land

27-02-2010

Your tutorial is helpful and most appreciated. I've learned a lot




PHP video Tutorials
We use cookies to improve your browsing experience. . Learn more
HTML MySQL PHP JavaScript ASP Photoshop Articles Contact us
©2000-2025   plus2net.com   All rights reserved worldwide Privacy Policy Disclaimer