What is the difference between $message and $$message ?
Answer Posted / vikram
$message="hello";
$hello="world";
echo $$message;
// will print "world"..this concept is called "variable of
variables"...
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
Explain me what is x+ mode in fopen() used for?
Explain the difference between urlencode and urldecode?
Why is node js better than php?
What is final in php?
What is difference Between PHP 5 and 7?
What is a stored procedure in mysql?
How to fix "headers already sent" error in php
What is the use of htmlentities in php?
Tell me how can we change the maximum size of the files to be uploaded?
How to retrieve the original query string?
Which of the delimiter is ASP style?
What is difference between core php and framework?
What is the difference between $name and $$name?
How does html form submit work?
Tell me what the difference between the 'bitwise and' operator and the 'logical and' operator?