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?

Answers were Sorted based on User's Feedback



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

Answer / umesh ms analytica-india

$message = "ume";

$ume = "All Interview dot com";


echo $message; // Output: ume

echo $$message; // Output: All Interview dot com

Is This Answer Correct ?    98 Yes 9 No

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

Answer / darshit

$Message = "YOU";
$you= "Me";

echo $message //Output:- you
echo $$message //output :-Me

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

A variable of variable allows us to change the name of
variable dinamically

Is This Answer Correct ?    73 Yes 10 No

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

Answer / 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

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

Answer / king

People are here to find solution to their problems not to
see babies fight with one another

Is This Answer Correct ?    11 Yes 3 No

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

Answer / deepak tiwari

$message is variable and $$message is the variable of the
variable

Is This Answer Correct ?    8 Yes 0 No

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

Answer / mani

Hi peter This forum is for finding solutions. Not for
checking our Vocabulary

Is This Answer Correct ?    5 Yes 0 No

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

Answer / mahesh role

$message : It is static variable
$$message : It is an dynamic variable

$Message = "YOU";
$you= "Me";

echo $message //Output:- you
echo $$message //output :-
//because the letter in Message and variable is not same

$Message = "you";
$you= "Me";

echo $message //Output:- you
echo $$message //output :-Me

Is This Answer Correct ?    0 Yes 0 No

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

Answer / saravanan

$message is a simple variabla.

$$message is variabla of variable(dynamic)

Is This Answer Correct ?    0 Yes 0 No

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

Answer / peter

Hi Peter ,

You may be the world number one english master ,

But dont loose your words in forums , it make very big pains ,

sorry my dear peter ,

Sorry to all

Is This Answer Correct ?    6 Yes 7 No

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

Answer / thomas

I tried this $$message is not working..

Is This Answer Correct ?    12 Yes 24 No

Post New Answer

More PHP Interview Questions

What is mysqli_fetch_array?

0 Answers  


Is php required for wordpress?

0 Answers  


How to upload and play video in Php when u r in localhost?

3 Answers   HCL,


Is PHP an open source software?

0 Answers  


client side scripting language Vs server side scripting language

7 Answers   IBM, IRT,


What is the purpose of $_ session?

0 Answers  


How do you remove whitespace from the beginning and end of a $string variable?

0 Answers  


How does php isset work?

0 Answers  


Can we extend final class in php?

0 Answers  


write function of the sentence traversal passing the parameter, e.g input:this is input sentence. output:sentence input is this.

1 Answers   HyperQuality,


What is the different between cookies and session in php?

13 Answers  


What's the output of the ucwords function in this example?

0 Answers  


Categories