Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is the Diff. Between echo() and Print() in PHP?

Answer Posted / vinay sachan

There are many differences in print() and echo() :-

1-echo is unformatted whereas print is formatted.

2-echo() can take multiple expressions, Print cannot take multiple expressions.
ex.-
<?php
$name="Vinay";
echo "Name is $name";
//Value is Vinay

print 'Name is $name';
//Value is $name
?>

3-Print return true or false based on success or failure whereas echo just does what its told without letting you know whether or not it worked properly.

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is mysqli php?

1074


Why shouldn't I use mysql_* functions in php?

1149


What is php and why it is used?

1088


How is the comparison of objects done in php?

986


Which cryptographic extension provide generation and verification of digital signatures?

987


What's the best method for sanitizing user input with php?

978


Tell me how is it possible to know the number of rows returned in result set?

1151


What are the benefits of using queries?

1239


What is $_ request in php?

944


How can php and html interact?

1098


Explain some of the php string functions?

1024


What is the use of pear in php?

1076


How is it possible to know the number of rows returned in result set?

1060


How many types of array are there in php?

1124


Tell me what is the difference between the functions strstr() and stristr()?

1123