Home Answers Viewqa PHP What is the difference between $message and $$message?

 
 


brijesh
What is the difference between $message and $$message?
1 Answer(s)      2 years and 6 months ago
Posted in : PHP

What is the difference between $message and $$message?

View Answers

November 13, 2010 at 3:45 PM


$Message = "first";
$first= "second";

echo $message //Output   first
echo $$message //output  second

It means $message is a variable and $$Message is variable of variable

A variable of variable allows us to change the name of variable dynamically.

Thanks









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.