Advanced Java and Web Technologies for JNTUK
Blog providing beginner tutorials on different web technologies like HTML, CSS, Javascript, PHP, MYSQL, XML, Java Beans, Servlets, JSP and AJAX
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
AJWT » PHP » Output in PHP
Suryateja Pericherla Categories: PHP. No Comments on Output in PHP
0
(0)

The output of a PHP processor is (X)HTML code. There are multiple ways to output information onto the web document. One way is to use echo statement with or without parentheses as shown below:

echo(“Hello World”);

 

Second way is by using print statement with or without parentheses as shown below:

print(“This is PHP”);

 

The difference between echo and print are: echo doesn’t return anything while print returns 1. So print can be used in expressions. echo can accept multiple arguments while print accepts only one argument. Also echo is faster than print.

 

Third way is by using the printf function. The syntax of this function is given below:

printf(literal_string, param1, param2,….);

 


Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests.


Below is an example which demonstrates echo, print and printf statements:

<?php
   $a = 10;
   $b = 20;
   $sum = $a + $b;
   echo("Sum of $a and $b is: $sum <br />");
   print("Sum of $a and $b is: $sum <br />");
   printf("Sum of %d and %d is: %d", $a, $b, $sum);
?>

 

How useful was this post?

Click on a star to rate it!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Note: Do you have a question on this article or have a suggestion to make this article better? You can ask or suggest us by filling in the below form. After commenting, your comment will be held for moderation and will be published in 24-48 hrs.

Leave a Reply

Your email address will not be published. Required fields are marked *

Facebook
Twitter
Pinterest
Youtube
Instagram