Is there any way to retrieve the name of a variable? I.e. $messageID=2; I would like to print to the browser: messageID=2. Is there a short way of doing this? Thanks in advance!
print "messageID=$messageID";
or
print $$messageID."=$messageID";