in reply to "Translating" $

You probably used strings in double quotes. Perl interpolates (scalar and array) variables in double quotes. You can
  1. use single quotes '$LOGIN_INFORMATION = array("guest" => "1234");'
  2. use the q// operator: q/$LOGIN_INFORMATION = array('guest' => '1234');/
  3. backslash the dollar sign (and at signs): "\$LOGIN_INFORMATION = array('guest' => '1234');"
لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ

Replies are listed 'Best First'.
Re^2: "Translating" $
by Anonymous Monk on Oct 02, 2015 at 06:30 UTC

    Thank you so very much for your help! Your advice with \ worked perfectly :)