I'm trying to add a contact with echobot... even the simple code
Code:
$msn->addcontact("noone@here.com");
isn't working. It just returns 0. Am I missing something? [right][snapback]48407[/snapback][/right]
You can't use the @ symbol inside double quotes, Perl thinks you're using the array @here (it's probably giving you a warning "Possible unintended interpolation of array @here in string").
Put a \ before the @ or change it to single quotes: