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 difference between $message and $$message?

Answer Posted / seema

$message is a simple variable and $$message is variable of a
variable(also known as dynamic variable).

For Example:

$message = "welcome";
$welcome = "to php programming tricks!!!";


echo $message; // Output: welcome

echo "<br>",$$message; // Output: to php programming tricks!!!

You will notice with the second echo it will check the
variable $message for it's value and it's value is the
string "welcome". So then it searches for $welcome and finds
the final value which it yields.

Is This Answer Correct ?    12 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to get the IP address of the client/user in PHP?

1002


Tell me is it possible to submit a form with a dedicated button?

1008


What is difference between readonly and constant?

1059


What type of comments are supported by PHP.

1036


What is polymorphism in oop php?

1054


Write a program to display reverse of any number?

975


What is meant by variable variables in php?

1093


Tell me how to create a text file in php?

1039


How to define a user function?

1075


What is the main difference between asp net and php?

1069


What is the major php security hole? How to avoid?

1038


Explain the installation of PHP on UNIX systems?

1166


Is php required for wordpress?

1102


What is php programming used for?

1050


List functions available to sort an php array?

1005