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...

1.What are the difference between echo , print , print_r ?
else this 3 can we show output to a client in some other
way?

Answer Posted / ramesh

echo is not a function only it is display String Or integer Values

echo $record;
Array



print is a function it display the string and integer values it not applicable for loops and arrays

print($record);

Array

print_r is a return function it used for Strings and integers and as well as array of values and return object values

do u want effective retriview data from arrays use below statement

print_r($record);

Array ( [id] => 0 [date_details] => [password] => dasf [email] => sdfhhh )

echo "<pre>"; print_r($record);echo "</pre>";

Array
(
[id] => 0
[date_details] =>
[password] => dasf
[email] => sdfhhh
)

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the role of the .htaccess file in php?

960


Will react hooks replace redux?

965


Explain the difference between php4 and php5.

995


What does the scope of variables means?

1015


What is final in php?

1088


How can we connect to a mysql database from a php script?

1103


What is the static variable in function useful for?

962


What is the use of strip_tags() method?

936


Name some of the constants in php and their purpose.

983


How do you explain independent and dependent variables?

903


What is the w3c?

8938


How can we set and destroy the cookie in php?

957


What is php artisan tinker?

979


How to check an element is exists in array or not in php?

1066


Swap two variables value without using third variable in php ?

1053