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
Is laravel frontend or backend?
What is the basic syntax of Php?
What is the meaning of xdebug?
How can we submit from without a submit button?
What are the features of object-oriented programming in php?
Explain me what is the difference between $_files['userfile']['name'] and $_files['userfile']['tmp_name']?
Tell me what's the difference between include and require?
Explain me what is the goto statement useful for?
What is a stored procedure in mysql?
What is the use of mysql_fetch_assoc in php?
What is the difference between print() and echo()?
What is the use of stripslashes in php?
What is difference between ksort() and usort() functions.
What is curl php?
Does php support multiple inheritances?