What is the difference between $message and $$message?
Top Questions
$message is a simple variable whereas $$message is a variable's variable,which means
value of the variable. Example:
$user = 'bob'
is equivalent to
$message = 'user';
$$message = 'bob';
Post new comment