SQL PHP HTML ASP JavaScript articles and free scripts to download
 

echo command & escape character in PHP

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 printf or echo command.

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.
<?= $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 ";
?>



Further readings
Introduction to PHP: How scripting languages work
PHP beginners guide
echo command & escape character for string outputs
Adding delay to the script execution time by using sleep function
Disabling a part of the code by using comments in PHP
Printing Numbers 1 to 50 to screen
PHP Info: Details on PHP script settings & installation at server end
php_uname: Server OS details
PHP.ini file: PHP server configuration setting file for Edit or update
ini_get: PHP function to get configuration settings from php.ini file
ini_set: PHP function to change the configuration settings of php.ini file
PHP Version : What is the version of PHP running at the server
Installing PHP on windows server and IIS
Installing PHP5 on windows server and IIS
Setting up PHP in Windows Vista OS to run in IIS7 web server
Configuration of IIS7 to run PHP scripts with ISAPI module
Extension directory of PHP to store dll files for windows
Error messages Display off or On by using display_errors function in php.ini file
Using HTML inside PHP script, displaying tags

Dan Land27-02-2010
Your tutorial is helpful and most appreciated. I've learned a lot
Post Comment This is for short comments only. Use the forum for more discussions.
Name
Email( not to be displayed)Privacy Policy
1+2=This is to prevent automatic submission by spammers. Please enter the result of the sum as asked

Join Our Email List
Email:  
For Email Newsletters you can trust
Basics
HTML . MySQL. PHP. JavaScript. ASP. Photoshop. Articles. FORUM Contact us

©2000-2013 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer