What is the difference between $message and $$message?
$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
Ads